From 1b55167ca23b37ac6ee28296b641cbe5a3fbb0b0 Mon Sep 17 00:00:00 2001 From: Chris Friesen Date: Tue, 16 Oct 2018 15:15:11 -0600 Subject: [PATCH] Set number of servers in rabbitmq helm chart overrides. We want the number of rabbitmq server replicas to be equal to the number of controller nodes in the cluster. Change-Id: I2421422477811fc1e0e9cd57c1355bd27e62029b Story: 2003909 Task: 27086 Signed-off-by: Chris Friesen --- sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py b/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py index 23ee42f934..31515cf980 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py @@ -29,7 +29,7 @@ class RabbitmqHelm(openstack.OpenstackBaseHelm): common.HELM_NS_OPENSTACK: { 'pod': { 'replicas': { - 'server': 1 + 'server': self._num_controllers() } } }