File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 15
15
# TODO: match BASEIMAGE with Makefile default (nonroot variant)
16
16
BASEIMAGE : " gcr.io/distroless/static-debian11"
17
17
KIND_CLUSTER_NAME : " kind"
18
+ KIND_VERSION : " v0.27.0"
18
19
19
20
jobs :
20
21
build :
21
22
name : build
22
- runs-on : ubuntu-20 .04
23
+ runs-on : ubuntu-22 .04
23
24
steps :
24
25
- name : Check out code
25
26
uses : actions/checkout@v4
50
51
path : _output/konnectivity-agent.tar
51
52
kind-e2e :
52
53
name : kind-e2e
53
- runs-on : ubuntu-20 .04
54
+ runs-on : ubuntu-22 .04
54
55
timeout-minutes : 100
55
56
needs :
56
57
- build
67
68
steps :
68
69
- name : Install kind
69
70
run : |
70
- curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0 /kind-linux-amd64
71
+ curl -Lo ./kind https://kind.sigs.k8s.io/dl/${KIND_VERSION} /kind-linux-amd64
71
72
chmod +x ./kind
72
73
sudo mv ./kind /usr/local/bin/kind
73
74
- name : Check out code
97
98
run : make test-e2e-ci
98
99
e2e :
99
100
name : e2e
100
- runs-on : ubuntu-20 .04
101
+ runs-on : ubuntu-22 .04
101
102
timeout-minutes : 100
102
103
needs :
103
104
- build
@@ -129,7 +130,7 @@ jobs:
129
130
# kubectl
130
131
curl -L https://dl.k8s.io/${{ matrix.k8s }}/bin/linux/amd64/kubectl -o ${TMP_DIR}/kubectl
131
132
# kind
132
- curl -Lo ${TMP_DIR}/kind https://kind.sigs.k8s.io/dl/v0.20.0 /kind-linux-amd64
133
+ curl -Lo ${TMP_DIR}/kind https://kind.sigs.k8s.io/dl/${KIND_VERSION} /kind-linux-amd64
133
134
# Install
134
135
sudo cp ${TMP_DIR}/ginkgo /usr/local/bin/ginkgo
135
136
sudo cp ${TMP_DIR}/e2e.test /usr/local/bin/e2e.test
@@ -274,7 +275,7 @@ jobs:
274
275
- name : Export logs
275
276
if : always()
276
277
run : |
277
- /usr/local/bin/kind export logs --name ${KIND_CLUSTER_NAME} --loglevel=debug ./_artifacts/logs
278
+ /usr/local/bin/kind export logs --name ${KIND_CLUSTER_NAME} -v 4 ./_artifacts/logs
278
279
279
280
- name : Upload logs
280
281
if : always()
You can’t perform that action at this time.
0 commit comments