From 504ae113cecb835371bca2582ff55b4af1d45191 Mon Sep 17 00:00:00 2001 From: trinitas Date: Sat, 21 Nov 2020 23:56:36 +0000 Subject: [PATCH] Watch all pods in helm_test --- ci/helm_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/helm_test.sh b/ci/helm_test.sh index 0c284d9..e95360d 100755 --- a/ci/helm_test.sh +++ b/ci/helm_test.sh @@ -22,7 +22,7 @@ kubectl create namespace "$NAMESPACE" helm install -f "$DIR/ci_values.yaml" -n "$NAMESPACE" "$HELM_PACKAGE" "$1" i=0 -while [[ $(kubectl get pod -n "$NAMESPACE" -l=app.kubernetes.io/name=covidok -o jsonpath='{.items[*].status.containerStatuses[0].ready}') == *"false"* ]]; do +while [[ $(kubectl get pod -n "$NAMESPACE" -o jsonpath='{.items[*].status.containerStatuses[0].ready}') == *"false"* ]]; do echo "Covidok backend is not yet ready..." # Timeout is 200 sec, mysql should be available after 2 min if [ $i -gt 40 ]