Skip to content

Commit eef3f4c

Browse files
authored
upgrade kind version for e2e testing to 0.22.0 (#57)
1 parent 4aa94f1 commit eef3f4c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

hack/e2e-util.sh

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

hack/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.27.1 from kind v0.19.0
9-
image: kindest/node:v1.27.1@sha256:b7d12ed662b873bd8510879c1846e87c7e676a79fefc93e17b2a52989d3ff42b
8+
# kubernetes version 1.27.10 from kind v0.22.0
9+
image: kindest/node:v1.27.10@sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476
1010
# the worker
1111
- role: worker
12-
# kubernetes version 1.27.1 from kind v0.19.0
13-
image: kindest/node:v1.27.1@sha256:b7d12ed662b873bd8510879c1846e87c7e676a79fefc93e17b2a52989d3ff42b
12+
# kubernetes version 1.27.10 from kind v0.22.0
13+
image: kindest/node:v1.27.10@sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476

0 commit comments

Comments
 (0)