|
25 | 25 | - name: Import environment variables from file
|
26 | 26 | run: |
|
27 | 27 | cat ".github/env" >> "$GITHUB_ENV"
|
28 |
| - - name: Start kind cluster |
29 |
| - uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0 |
30 |
| - with: |
31 |
| - version: ${{ env.kind-version }} |
32 |
| - node_image: ${{ env.kind-image }} |
33 |
| - wait: 300s |
34 |
| - config: ./tests/e2e/kind-config.yaml |
35 |
| - cluster_name: e2e |
36 |
| - - name: Wait for cluster to finish bootstraping |
37 |
| - run: | |
38 |
| - echo "Waiting for all nodes to be ready..." |
39 |
| - kubectl wait --for=condition=Ready nodes --all --timeout=120s |
40 |
| - kubectl get nodes |
41 |
| - echo "Waiting for all pods to be ready..." |
42 |
| - kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s |
43 |
| - kubectl get pods -A |
44 |
| - echo "Cluster information" |
45 |
| - kubectl cluster-info |
46 | 28 | - name: Run e2e tests
|
47 | 29 | run: |
|
48 | 30 | make test-e2e-3.7.8
|
|
57 | 39 | - name: Import environment variables from file
|
58 | 40 | run: |
|
59 | 41 | cat ".github/env" >> "$GITHUB_ENV"
|
60 |
| - - name: Start kind cluster |
61 |
| - uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0 |
62 |
| - with: |
63 |
| - version: ${{ env.kind-version }} |
64 |
| - node_image: ${{ env.kind-image }} |
65 |
| - wait: 300s |
66 |
| - config: ./tests/e2e/kind-config.yaml |
67 |
| - cluster_name: e2e |
68 |
| - - name: Wait for cluster to finish bootstraping |
69 |
| - run: | |
70 |
| - echo "Waiting for all nodes to be ready..." |
71 |
| - kubectl wait --for=condition=Ready nodes --all --timeout=120s |
72 |
| - kubectl get nodes |
73 |
| - echo "Waiting for all pods to be ready..." |
74 |
| - kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s |
75 |
| - kubectl get pods -A |
76 |
| - echo "Cluster information" |
77 |
| - kubectl cluster-info |
78 | 42 | - name: Run e2e tests
|
79 | 43 | run: |
|
80 | 44 | make test-e2e-4.0.11
|
|
89 | 53 | - name: Import environment variables from file
|
90 | 54 | run: |
|
91 | 55 | cat ".github/env" >> "$GITHUB_ENV"
|
92 |
| - - name: Start kind cluster |
93 |
| - uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0 |
94 |
| - with: |
95 |
| - version: ${{ env.kind-version }} |
96 |
| - node_image: ${{ env.kind-image }} |
97 |
| - wait: 300s |
98 |
| - config: ./tests/e2e/kind-config.yaml |
99 |
| - cluster_name: e2e |
100 |
| - - name: Wait for cluster to finish bootstraping |
101 |
| - run: | |
102 |
| - echo "Waiting for all nodes to be ready..." |
103 |
| - kubectl wait --for=condition=Ready nodes --all --timeout=120s |
104 |
| - kubectl get nodes |
105 |
| - echo "Waiting for all pods to be ready..." |
106 |
| - kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s |
107 |
| - kubectl get pods -A |
108 |
| - echo "Cluster information" |
109 |
| - kubectl cluster-info |
110 | 56 | - name: Run e2e tests
|
111 | 57 | run: |
|
112 | 58 | make test-e2e-4.1.8
|
0 commit comments