increase installation time data filtering

This commit is contained in:
Cédric Verstraeten
2024-09-07 17:47:53 +02:00
committed by GitHub
parent e0718004bc
commit 57c391e957

View File

@@ -80,6 +80,6 @@ jobs:
sed -e '/limits/ s/^#*/#/' -i ./data-filtering-deployment.yaml
sed -e '/nvidia/ s/^#*/#/' -i ./data-filtering-deployment.yaml
kubectl apply -f data-filtering-deployment.yaml
echo "Sleeping for 120 seconds, give time for the helm chart to create the pods" && sleep 120
echo "Sleeping for 150 seconds, give time for the helm chart to create the pods" && sleep 150
kubectl get pods -A -o wide
kubectl get pods -A -o wide | grep data-filtering | awk '{print $3}' | grep -q '1/1' && echo "data-filtering pod is running with status 1/1" || (echo "data-filtering pod is not running with status 1/1" && exit 1)