We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c81ae2a + b4d8659 commit 8333aa4Copy full SHA for 8333aa4
1 file changed
.github/workflows/e2e-test.yml
@@ -71,6 +71,11 @@ jobs:
71
run: ./dtm apply -f e2e-config.yaml -y
72
- name: apply twice git-ops
73
74
+ - name: install kubectl
75
+ run: |
76
+ curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.22.0/bin/linux/amd64/kubectl
77
+ chmod +x ./kubectl
78
+ sudo mv ./kubectl /usr/local/bin/kubectl
79
- name: check if pod is ready
80
run: while [[ $(kubectl get pods -l app=dtm-e2e-go -o 'jsonpath={..status.conditions[?(@.type=="Ready")].status}') != "True" ]]; do echo "pod not ready yet..."; sleep 3; done
81
timeout-minutes: 10
0 commit comments