File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
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 :
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
@@ -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