From ff86414742e811200700902ececf3f39ba9406df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Verstraeten?= Date: Sun, 25 Aug 2024 20:45:57 +0200 Subject: [PATCH] increase delay for mongodb --- .github/workflows/kind.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kind.yaml b/.github/workflows/kind.yaml index f110a12..d50b678 100644 --- a/.github/workflows/kind.yaml +++ b/.github/workflows/kind.yaml @@ -46,7 +46,7 @@ jobs: helm repo add bitnami https://charts.bitnami.com/bitnami kubectl create namespace mongodb helm install mongodb -n mongodb bitnami/mongodb --values ./mongodb-values.yaml - echo "Sleeping for 90 seconds, give time for the helm chart to create the pods" && sleep 90 + echo "Sleeping for 120 seconds, give time for the helm chart to create the pods" && sleep 120 kubectl get pods -A -o wide kubectl get pods -A -o wide | grep mongodb | awk '{print $3}' | grep -q '1/1' && echo "mongodb pod is running with status 1/1" || (echo "mongodb pod is not running with status 1/1" && exit 1) - name: Install RabbitMQ