Skip to content

Commit c461f11

Browse files
committed
Upgrade KinD to v0.20.0 and nodes to v1.26.6
1 parent a41fdcb commit c461f11

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: hack/e2e-kind-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ apiVersion: kind.x-k8s.io/v1alpha4
55
nodes:
66
# the control plane node config
77
- role: control-plane
8-
# kubernetes version 1.20.7 from kind v0.11.0
9-
image: kindest/node:v1.20.7@sha256:e645428988191fc824529fd0bb5c94244c12401cf5f5ea3bd875eb0a787f0fe9
8+
# kubernetes version 1.26.6 from kind v0.20.0
9+
image: kindest/node:v1.26.6@sha256:6e2d8b28a5b601defe327b98bd1c2d1930b49e5d8c512e1895099e4504007adb
1010
# the worker
1111
- role: worker
12-
# kubernetes version 1.20.7 from kind v0.11.0
13-
image: kindest/node:v1.20.7@sha256:e645428988191fc824529fd0bb5c94244c12401cf5f5ea3bd875eb0a787f0fe9
12+
# kubernetes version 1.26.6 from kind v0.20.0
13+
image: kindest/node:v1.26.6@sha256:6e2d8b28a5b601defe327b98bd1c2d1930b49e5d8c512e1895099e4504007adb

Diff for: hack/run-e2e-kind.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ function update_test_host {
7777
which kind >/dev/null 2>&1
7878
if [ $? -ne 0 ]
7979
then
80-
# Download kind binary (0.18.0)
80+
# Download kind binary (0.20.0)
8181
echo "Downloading and installing kind...."
82-
sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.18.0/kind-linux-${arch} && \
82+
sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.20.0/kind-linux-${arch} && \
8383
sudo chmod +x /usr/local/bin/kind
8484
[ $? -ne 0 ] && echo "Failed to download kind" && exit 1
8585
echo "Kind was sucessfully installed."

0 commit comments

Comments
 (0)