From ec43f3392c8fb6db6b65bdc901f8d8fe296ab551 Mon Sep 17 00:00:00 2001 From: Chris Wedgwood Date: Wed, 13 Sep 2017 21:56:49 +0000 Subject: [PATCH] gate: for aio only run a single rabbitmq Change-Id: I2ae79c131dbc11d000681ba23b7779149b14d424 --- tools/gate/launch-osh/basic.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/gate/launch-osh/basic.sh b/tools/gate/launch-osh/basic.sh index e0b5313eb8..4246c165f3 100755 --- a/tools/gate/launch-osh/basic.sh +++ b/tools/gate/launch-osh/basic.sh @@ -116,7 +116,12 @@ if [ "x$OPENSTACK_OBJECT_STORAGE" == "xradosgw" ]; then fi helm install --namespace=openstack ${WORK_DIR}/etcd --name=etcd-rabbitmq -helm install --namespace=openstack ${WORK_DIR}/rabbitmq --name=rabbitmq +if [ "x$INTEGRATION" == "xmulti" ]; then + helm install --namespace=openstack ${WORK_DIR}/rabbitmq --name=rabbitmq +else + helm install --namespace=openstack ${WORK_DIR}/rabbitmq --name=rabbitmq \ + --set pod.replicas.server=1 +fi if [[ "x${PVC_BACKEND}" != "xceph" ]] && [[ "x${GLANCE}" != "xpvc" ]] ; then echo "Gate only supports glance with pvc backend when not using ceph"