From ba0b7eeb05d60664335ee1ea8300c93e78cc3d5c Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Sun, 23 Oct 2022 20:18:59 -0500 Subject: [PATCH] Run 1 replica of rabbitmq in the gate Occasionally rabbitmq replicas fail to come up when running in zuul due to resource constraints. This causes random failures and needless rechecks when it comes up. This change sets the number of replicas when deploying the compute kit script to 1 from the default 2. Change-Id: Icdcc075a88d05f87a7f787d306d6b430485964c9 --- tools/deployment/component/common/rabbitmq.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/deployment/component/common/rabbitmq.sh b/tools/deployment/component/common/rabbitmq.sh index 8e5f7ad71e..9b5a9d70db 100755 --- a/tools/deployment/component/common/rabbitmq.sh +++ b/tools/deployment/component/common/rabbitmq.sh @@ -25,7 +25,7 @@ make -C ${HELM_CHART_ROOT_PATH} rabbitmq helm upgrade --install rabbitmq ${HELM_CHART_ROOT_PATH}/rabbitmq \ --namespace=openstack \ --set volume.enabled=false \ - --set pod.replicas.server=2 \ + --set pod.replicas.server=1 \ ${OSH_EXTRA_HELM_ARGS:=} \ ${OSH_EXTRA_HELM_ARGS_RABBITMQ}