Skip to content
Snippets Groups Projects
Unverified Commit baf0774e authored by Paweł Krupa's avatar Paweł Krupa Committed by GitHub
Browse files

Merge pull request #1237 from PhilipGough/ci-test

ci: Use wait command to ensure cluster readiness
parents f9fd5bd4 e38bc756
Branches
Tags
No related merge requests found
......@@ -63,13 +63,9 @@ jobs:
with:
version: ${{ env.kind-version }}
image: ${{ matrix.kind-image }}
wait: 300s
- name: Wait for cluster to finish bootstraping
run: |
until [ "$(kubectl get pods --all-namespaces --no-headers | grep -cEv '([0-9]+)/\1')" -eq 0 ]; do
sleep 5s
done
kubectl cluster-info
kubectl get pods -A
run: kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s
- name: Create kube-prometheus stack
run: |
kubectl create -f manifests/setup
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment