From ac8e2736ad9a50b032c2a8432099cb90fe03a026 Mon Sep 17 00:00:00 2001 From: Millz12 Date: Tue, 4 Apr 2023 14:31:50 +0100 Subject: [PATCH] [bitnami/rabbitmq] Updated values.yaml (#15934) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Updated values.yaml Updated the values.yaml file to prevent loading definition file prior to the cluster being fully initialised. This allows the quorum queues defined within the definition file to setup correctly with followers instead of master with 0 followers. Resolves: https://github.com/bitnami/charts/issues/15299 Signed-off-by: Millz12 * [bitnami/rabbitmq] Updated values.yaml Updated the values.yaml file to prevent loading definition file prior to the cluster being fully initialised. This allows the quorum queues defined within the definition file to setup correctly with followers instead of only a master with 0 followers. Signed-off-by: Millz12 * Update bitnami/rabbitmq/Chart.yaml Co-authored-by: Ibone González Mauraza Signed-off-by: Millz12 --------- Signed-off-by: Millz12 Co-authored-by: Ibone González Mauraza --- bitnami/rabbitmq/Chart.yaml | 2 +- bitnami/rabbitmq/values.yaml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bitnami/rabbitmq/Chart.yaml b/bitnami/rabbitmq/Chart.yaml index b13227b324..34677a4fcf 100644 --- a/bitnami/rabbitmq/Chart.yaml +++ b/bitnami/rabbitmq/Chart.yaml @@ -23,4 +23,4 @@ name: rabbitmq sources: - https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq - https://www.rabbitmq.com -version: 11.12.3 +version: 11.13.0 \ No newline at end of file diff --git a/bitnami/rabbitmq/values.yaml b/bitnami/rabbitmq/values.yaml index d038ca1a37..ab45d2f7c4 100644 --- a/bitnami/rabbitmq/values.yaml +++ b/bitnami/rabbitmq/values.yaml @@ -387,6 +387,9 @@ configuration: |- 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 }} {{- if .Values.loadDefinition.enabled }} load_definitions = {{ .Values.loadDefinition.file }} {{- end }}