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
This commit is contained in:
Gage Hugo 2022-10-23 20:18:59 -05:00
parent 4c3bc3adaa
commit ba0b7eeb05
1 changed files with 1 additions and 1 deletions

View File

@ -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}