Skip to content

Commit e77456a

Browse files
committed
Fix 25
Signed-off-by: Charles Moulliard <cmoulliard@ibm.com>
1 parent 0d9f208 commit e77456a

1 file changed

Lines changed: 20 additions & 10 deletions

File tree

.github/workflows/helm-posgresql.yml

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,28 @@ jobs:
2828
# run: |
2929
# curl -Ls https://sh.jbang.dev | bash -s - app setup
3030

31-
#- name: Kubernetes KinD Cluster
32-
# uses: container-tools/kind-action@v1
33-
# with:
34-
# version: v0.11.1
35-
# registry: true
36-
3731
- name: Kubernetes KinD Cluster
38-
uses: helm/kind-action@v1
32+
uses: container-tools/kind-action@v1
3933
with:
40-
registry: false
41-
#registry_name: my-registry
42-
#registry_port: 5001
34+
version: v0.11.1
35+
registry: true
36+
37+
- name: Wait for Cluster Readiness
38+
run: |
39+
echo "Waiting for nodes to be ready..."
40+
kubectl wait --for=condition=Ready nodes --all --timeout=300s
41+
42+
echo "Waiting for system pods to be ready..."
43+
kubectl wait --for=condition=Ready pods --all -n kube-system --timeout=300s
44+
45+
echo "Cluster is ready!"
46+
47+
#- name: Kubernetes KinD Cluster
48+
# uses: helm/kind-action@v1
49+
# with:
50+
# registry: false
51+
# #registry_name: my-registry
52+
# #registry_port: 5001
4353

4454
- name: Install helm 4
4555
run: |

0 commit comments

Comments
 (0)