From 7162fe0d45373efe8135f4aafbd9ca444228305f Mon Sep 17 00:00:00 2001 From: David Grove Date: Tue, 9 Jul 2024 09:26:14 -0400 Subject: [PATCH] update CI to use kind v0.23.0 --- hack/e2e-util.sh | 6 +++--- hack/kind-config.yaml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/hack/e2e-util.sh b/hack/e2e-util.sh index 4a190fe..d21dc2d 100755 --- a/hack/e2e-util.sh +++ b/hack/e2e-util.sh @@ -61,9 +61,9 @@ function update_test_host { which kind >/dev/null 2>&1 if [ $? -ne 0 ] then - # Download kind binary (0.22.0) - echo "Downloading and installing kind...." - sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.22.0/kind-linux-${arch} && \ + # Download kind binary (0.23.0) + echo "Downloading and installing kind v0.23.0...." + sudo curl -o /usr/local/bin/kind -L https://github.com/kubernetes-sigs/kind/releases/download/v0.23.0/kind-linux-${arch} && \ sudo chmod +x /usr/local/bin/kind [ $? -ne 0 ] && echo "Failed to download kind" && exit 1 echo "Kind was sucessfully installed." diff --git a/hack/kind-config.yaml b/hack/kind-config.yaml index 4712500..0f9512a 100644 --- a/hack/kind-config.yaml +++ b/hack/kind-config.yaml @@ -5,9 +5,9 @@ apiVersion: kind.x-k8s.io/v1alpha4 nodes: # the control plane node config - role: control-plane - # kubernetes version 1.27.10 from kind v0.22.0 - image: kindest/node:v1.27.10@sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476 + # kubernetes version 1.27.13 from kind v0.23.0 + image: kindest/node:v1.27.13@sha256:17439fa5b32290e3ead39ead1250dca1d822d94a10d26f1981756cd51b24b9d8 # the worker - role: worker - # kubernetes version 1.27.10 from kind v0.22.0 - image: kindest/node:v1.27.10@sha256:e6b2f72f22a4de7b957cd5541e519a8bef3bae7261dd30c6df34cd9bdd3f8476 + # kubernetes version 1.27.13 from kind v0.23.0 + image: kindest/node:v1.27.13@sha256:17439fa5b32290e3ead39ead1250dca1d822d94a10d26f1981756cd51b24b9d8