Skip to content

Commit 1483b97

Browse files
committed
chore: update kind version to v0.27.0
Signed-off-by: Lan Liang <gcslyp@gmail.com>
1 parent 65081eb commit 1483b97

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/e2e.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ env:
1515
# TODO: match BASEIMAGE with Makefile default (nonroot variant)
1616
BASEIMAGE: "gcr.io/distroless/static-debian11"
1717
KIND_CLUSTER_NAME: "kind"
18+
KIND_VERSION: "v0.27.0"
1819

1920
jobs:
2021
build:
@@ -67,7 +68,7 @@ jobs:
6768
steps:
6869
- name: Install kind
6970
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
7172
chmod +x ./kind
7273
sudo mv ./kind /usr/local/bin/kind
7374
- name: Check out code
@@ -129,7 +130,7 @@ jobs:
129130
# kubectl
130131
curl -L https://dl.k8s.io/${{ matrix.k8s }}/bin/linux/amd64/kubectl -o ${TMP_DIR}/kubectl
131132
# 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
133134
# Install
134135
sudo cp ${TMP_DIR}/ginkgo /usr/local/bin/ginkgo
135136
sudo cp ${TMP_DIR}/e2e.test /usr/local/bin/e2e.test
@@ -274,7 +275,7 @@ jobs:
274275
- name: Export logs
275276
if: always()
276277
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
278279
279280
- name: Upload logs
280281
if: always()

0 commit comments

Comments
 (0)