increase hub helm sleep

This commit is contained in:
Cedric Verstraeten
2024-09-07 18:48:26 +02:00
parent ecdccd0ce0
commit 2d826e94d5

View File

@@ -87,6 +87,6 @@ jobs:
helm repo update
kubectl create namespace kerberos-hub
helm install hub kerberos/hub --values kerberos-hub-helm.yaml -n kerberos-hub --create-namespace
echo "Sleeping for 30 seconds, give time for the helm chart to create the pods" && sleep 30
echo "Sleeping for 300 seconds, give time for the helm chart to create the pods" && sleep 300
kubectl get pods -A -o wide
kubectl get pods -A -o wide | grep kerberos-hub | awk '{print $3}' | grep -q '1/1' && echo "kerberos-hub pod is running with status 1/1" || (echo "kerberos-hub pod is not running with status 1/1" && exit 1)