Skip to content

Commit

Permalink
Wait until seed is created before waiting for conditions (gardener#5696)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfranzke authored Mar 30, 2022
1 parent da9488e commit 69b6c2a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions skaffold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,14 @@ deploy:
- -ec
- |
echo "Wait until seed is ready"
for i in `seq 1 30`;
do
if kubectl get seed local 2> /dev/null; then
break
fi
echo "Wait until seed gets created by gardenlet"
sleep 2
done
kubectl wait --for=condition=gardenletready --for=condition=extensionsready --for=condition=bootstrapped seed local --timeout=5m
releases:
- name: gardener-gardenlet
Expand Down

0 comments on commit 69b6c2a

Please sign in to comment.