We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7393a76 commit c2d2d26Copy full SHA for c2d2d26
.github/workflows/test.yaml
@@ -45,4 +45,12 @@ jobs:
45
46
- name: Wait for a while with the running pods
47
run: sleep 60
48
+ - name: Check cluster pods
49
+ run: kubectl get pods -A
50
+
51
+ - name: Show logs from Vector pod for debugging
52
+ run: kubectl logs -l app.kubernetes.io/name=vector
53
54
+ - name: Check if all pods are running
55
+ run: kubectl get pods -A -o jsonpath='{range .items[*]}{.status.phase}{"\n"}{end}' | grep -qv "^Running$" && echo "Not all pods are running" && exit 1 || echo "OK"
56
0 commit comments