Skip to content

Commit f2eee09

Browse files
authored
update CI to use kind v0.23.0 (#189)
1 parent 031b037 commit f2eee09

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

hack/e2e-util.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ function update_test_host {
6161
which kind >/dev/null 2>&1
6262
if [ $? -ne 0 ]
6363
then
64-
# Download kind binary (0.22.0)
65-
echo "Downloading and installing kind...."
66-
sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.22.0/kind-linux-${arch} && \
64+
# Download kind binary (0.23.0)
65+
echo "Downloading and installing kind v0.23.0...."
66+
sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.23.0/kind-linux-${arch} && \
6767
sudo chmod +x /usr/local/bin/kind
6868
[ $? -ne 0 ] && echo "Failed to download kind" && exit 1
6969
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.10 from kind v0.22.0
9-
image: kindest/node:v1.27.10@sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476
8+
# kubernetes version 1.27.13 from kind v0.23.0
9+
image: kindest/node:v1.27.13@sha256:17439fa5b32290e3ead39ead1250dca1d822d94a10d26f1981756cd51b24b9d8
1010
# the worker
1111
- role: worker
12-
# kubernetes version 1.27.10 from kind v0.22.0
13-
image: kindest/node:v1.27.10@sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476
12+
# kubernetes version 1.27.13 from kind v0.23.0
13+
image: kindest/node:v1.27.13@sha256:17439fa5b32290e3ead39ead1250dca1d822d94a10d26f1981756cd51b24b9d8

0 commit comments

Comments
 (0)