Skip to content

Commit e12e8f6

Browse files
authored
No longer support k8s versions earlier 1.16.2 (#129)
* Remove v1.16.2 from tests
1 parent 2d06836 commit e12e8f6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ jobs:
5454
OPERATOR_IMAGE_TAG: 0.0.0
5555

5656
strategy:
57+
fail-fast: false
5758
matrix:
58-
kubernetes-version: [v1.16.2, v1.16.4, v1.19.4, v1.22.4]
59+
kubernetes-version: [v1.16.4, v1.19.4, v1.22.4, v1.23.4]
5960

6061
steps:
6162
- uses: actions/checkout@v1
@@ -109,7 +110,7 @@ jobs:
109110
helm-charts/tarantool-cartridge
110111
111112
- name: Waiting for routers Pods availability
112-
run: kubectl wait --for=condition=ready pod --timeout=180s -l tarantool.io/role=router || true
113+
run: for i in {1..60}; do kubectl wait -n ${{ env.APP_NAMESPACE }} --for=condition=ready pod --timeout=180s -l tarantool.io/role=router && break || sleep 1; done
113114

114115
- name: Сhecking the number of ready router replicas
115116
run : |

0 commit comments

Comments
 (0)