From 4b8ff080c294a9683dbae0c7cd0f61e3d8d77314 Mon Sep 17 00:00:00 2001 From: trinitas Date: Sat, 21 Nov 2020 23:49:33 +0000 Subject: [PATCH 1/4] Debug print in CI --- ci/helm_test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/helm_test.sh b/ci/helm_test.sh index 98cffca..0c284d9 100755 --- a/ci/helm_test.sh +++ b/ci/helm_test.sh @@ -1,6 +1,7 @@ #!/bin/bash set -e +set -x if [ ! -d "$1" ] then From 504ae113cecb835371bca2582ff55b4af1d45191 Mon Sep 17 00:00:00 2001 From: trinitas Date: Sat, 21 Nov 2020 23:56:36 +0000 Subject: [PATCH 2/4] 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 ] From fb1c120ea6cc39d844bf9986e4f5ca65b61e7245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyulai=20D=C3=A1niel?= Date: Sat, 21 Nov 2020 19:17:53 -0500 Subject: [PATCH 3/4] Added wait period to helm_test --- ci/helm_test.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ci/helm_test.sh b/ci/helm_test.sh index e95360d..bae0dc3 100755 --- a/ci/helm_test.sh +++ b/ci/helm_test.sh @@ -21,6 +21,12 @@ kubectl create namespace "$NAMESPACE" helm install -f "$DIR/ci_values.yaml" -n "$NAMESPACE" "$HELM_PACKAGE" "$1" +while [ ! $(kubectl get pod -n "$NAMESPACE" | wc -l) -gt 0 ] +do + echo "No pods in namespace..." + sleep 2 +done + i=0 while [[ $(kubectl get pod -n "$NAMESPACE" -o jsonpath='{.items[*].status.containerStatuses[0].ready}') == *"false"* ]]; do echo "Covidok backend is not yet ready..." From d9da1abbe3dfb8147dd5682f1a458d1c314e4674 Mon Sep 17 00:00:00 2001 From: trinitas Date: Sun, 22 Nov 2020 00:30:11 +0000 Subject: [PATCH 4/4] Removed debug output of helm_test --- ci/helm_test.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/helm_test.sh b/ci/helm_test.sh index bae0dc3..a726807 100755 --- a/ci/helm_test.sh +++ b/ci/helm_test.sh @@ -1,7 +1,6 @@ #!/bin/bash set -e -set -x if [ ! -d "$1" ] then