From 3216038dd840237d7bf9f50e725115873ca0bcc8 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Sat, 22 Feb 2025 05:51:38 +0800 Subject: [PATCH] feat(rabbitmq): remove clustering configuration from values.alpha.yaml Signed-off-by: zhenyus --- freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml b/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml index 0f23bd1c..8f82849f 100644 --- a/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml +++ b/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml @@ -62,20 +62,6 @@ configuration: |- {{- if and (not .Values.auth.securePassword) .Values.auth.password }} default_pass = {{ .Values.auth.password }} {{- end }} - {{- if .Values.clustering.enabled }} - ## Clustering - ## - cluster_name = {{ default (include "common.names.fullname" .) .Values.clustering.name }} - cluster_formation.peer_discovery_backend = rabbit_peer_discovery_k8s - cluster_formation.k8s.host = kubernetes.default - cluster_formation.k8s.address_type = {{ .Values.clustering.addressType }} - {{- $svcName := printf "%s-%s" (include "common.names.fullname" .) (default "headless" .Values.servicenameOverride) }} - cluster_formation.k8s.service_name = {{ $svcName }} - cluster_formation.k8s.hostname_suffix = .{{ $svcName }}.{{ include "common.names.namespace" . }}.svc.{{ .Values.clusterDomain }} - cluster_formation.node_cleanup.interval = 10 - cluster_formation.node_cleanup.only_log_warning = true - cluster_partition_handling = {{ .Values.clustering.partitionHandling }} - {{- end }} {{ if and .Values.clustering.enabled .Values.loadDefinition.enabled }} cluster_formation.target_cluster_size_hint = {{ .Values.replicaCount }} {{ end }}