From 41a44dd066f299e5cb2aca6b25091f91c3fd86d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyulai=20D=C3=A1niel?= Date: Sat, 21 Nov 2020 18:29:34 -0500 Subject: [PATCH] Fix helm_test script --- 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 8a2761e..98cffca 100755 --- a/ci/helm_test.sh +++ b/ci/helm_test.sh @@ -21,7 +21,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" -l=app.kubernetes.io/name=covidok -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 ]