gate: for aio only run a single rabbitmq

Change-Id: I2ae79c131dbc11d000681ba23b7779149b14d424
This commit is contained in:
Chris Wedgwood 2017-09-13 21:56:49 +00:00
parent 9e117ce95b
commit ec43f3392c

View File

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