Skip to content

Commit cf164d6

Browse files
committed
chore: update kind version to v0.27.0
Signed-off-by: Lan <[email protected]>
1 parent 65081eb commit cf164d6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/e2e.yaml

Lines changed: 3 additions & 2 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

0 commit comments

Comments
 (0)