Remove helm status from deployment scripts for tenant-ceph

With the move to helm v3, helm status requires a namespace to be specified, but doing so breaks helm v2 compatability. This change removes the usage of helm serve in openstack-helm-infra's deployment scripts.

Change-Id: I649512e17fc62049fef5b9d5e05c69c0e99635f9
This commit is contained in:
jayonlau 2021-10-13 13:03:18 -04:00
parent 746a98ebed
commit 6d5c4265f8
3 changed files with 0 additions and 12 deletions

View File

@ -34,9 +34,6 @@ helm upgrade --install ingress-kube-system ./ingress \
#NOTE: Wait for deploy
./tools/deployment/common/wait-for-pods.sh kube-system
#NOTE: Display info
helm status ingress-kube-system
#NOTE: Deploy namespaced ingress controllers
for NAMESPACE in osh-infra ceph tenant-ceph; do
#NOTE: Deploy namespace ingress
@ -45,7 +42,4 @@ for NAMESPACE in osh-infra ceph tenant-ceph; do
#NOTE: Wait for deploy
./tools/deployment/common/wait-for-pods.sh ${NAMESPACE}
#NOTE: Display info
helm status ingress-${NAMESPACE}
done

View File

@ -83,7 +83,4 @@ helm upgrade --install tenant-ceph-openstack-config ./ceph-provisioners \
#NOTE: Wait for deploy
./tools/deployment/common/wait-for-pods.sh openstack
#NOTE: Validate Deployment info
helm status tenant-ceph-openstack-config
helm test tenant-ceph-openstack-config --timeout 600

View File

@ -67,9 +67,6 @@ helm upgrade --install radosgw-openstack ./ceph-rgw \
#NOTE: Wait for deploy
./tools/deployment/common/wait-for-pods.sh openstack
#NOTE: Validate Deployment info
helm status radosgw-openstack
# Delete the test pod if it still exists
kubectl delete pods -l application=ceph,release_group=radosgw-openstack,component=rgw-test --namespace=openstack --ignore-not-found
helm test radosgw-openstack --timeout 900