Fixed ingress kube status bug

The ingress gate script displayed the `helm status` of the openstack
namespace ingress twice, rather than once for openstack and once
for ceph namespaces.  This fixes.

Change-Id: I9637b44d2cfad45f4935242351ee9160e013364f
This commit is contained in:
Matt McEuen 2018-07-18 21:23:03 -05:00
parent 803faedac0
commit dd497381a8

View File

@ -51,5 +51,5 @@ for NAMESPACE in openstack ceph; do
./tools/deployment/common/wait-for-pods.sh ${NAMESPACE}
#NOTE: Display info
helm status ingress-openstack
helm status ingress-${NAMESPACE}
done