Remove helm status from deployment scripts for federated-monitoring

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: I21ba5d8ca6f86954c793268142419e0a9e083943
This commit is contained in:
jayonlau 2021-10-13 12:29:23 -04:00
parent 60a9540e0b
commit 74b79700c0
3 changed files with 0 additions and 9 deletions

View File

@ -59,9 +59,6 @@ for release in prometheus-one prometheus-two prometheus-three; do
#NOTE: Wait for deploy
./tools/deployment/common/wait-for-pods.sh osh-infra
#NOTE: Validate Deployment info
helm status prometheus-$release
# Delete the test pod if it still exists
kubectl delete pods -l application=prometheus,release_group=prometheus-$release,component=test --namespace=osh-infra --ignore-not-found
helm test prometheus-$release

View File

@ -58,9 +58,6 @@ helm upgrade --install federated-prometheus ./prometheus \
#NOTE: Wait for deploy
./tools/deployment/common/wait-for-pods.sh osh-infra
#NOTE: Validate Deployment info
helm status federated-prometheus
# Delete the test pod if it still exists
kubectl delete pods -l application=prometheus,release_group=federated-prometheus,component=test --namespace=osh-infra --ignore-not-found
helm test federated-prometheus

View File

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