Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 956f0e7

Browse files
authored
upgrade e2e tests to use kind v0.22.0 (#155)
1 parent a1ea4ea commit 956f0e7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

hack/e2e-util.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ function update_test_host {
5555
which kind >/dev/null 2>&1
5656
if [ $? -ne 0 ]
5757
then
58-
# Download kind binary (0.19.0)
58+
# Download kind binary (0.22.0)
5959
echo "Downloading and installing kind...."
60-
sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.19.0/kind-linux-${arch} && \
60+
sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.22.0/kind-linux-${arch} && \
6161
sudo chmod +x /usr/local/bin/kind
6262
[ $? -ne 0 ] && echo "Failed to download kind" && exit 1
6363
echo "Kind was sucessfully installed."

hack/kind-config.yaml

Lines changed: 4 additions & 4 deletions
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.26.4 from kind v0.19.0
9-
image: kindest/node:v1.26.4@sha256:f4c0d87be03d6bea69f5e5dc0adb678bb498a190ee5c38422bf751541cebe92e
8+
# kubernetes version 1.26.14 from kind v0.22.0
9+
image: kindest/node:v1.26.14@sha256:5d548739ddef37b9318c70cb977f57bf3e5015e4552be4e27e57280a8cbb8e4f
1010
# the worker
1111
- role: worker
12-
# kubernetes version 1.26.4 from kind v0.19.0
13-
image: kindest/node:v1.26.4@sha256:f4c0d87be03d6bea69f5e5dc0adb678bb498a190ee5c38422bf751541cebe92e
12+
# kubernetes version 1.26.14 from kind v0.22.0
13+
image: kindest/node:v1.26.14@sha256:5d548739ddef37b9318c70cb977f57bf3e5015e4552be4e27e57280a8cbb8e4f

0 commit comments

Comments
 (0)