From e678aa528e5f793390f5cd9e7c5a12048128ffac Mon Sep 17 00:00:00 2001 From: Jakub Stejskal Date: Thu, 13 Aug 2026 22:27:01 +0200 Subject: [PATCH 1/2] Bump kind version to 0.32 and cloudProvider to 0.11 Signed-off-by: Jakub Stejskal --- .github/actions/dependencies/setup-kind/action.yml | 4 ++-- .github/actions/dependencies/setup-kind/setup-kind.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/dependencies/setup-kind/action.yml b/.github/actions/dependencies/setup-kind/action.yml index 1876d46..f2dd87f 100644 --- a/.github/actions/dependencies/setup-kind/action.yml +++ b/.github/actions/dependencies/setup-kind/action.yml @@ -9,7 +9,7 @@ inputs: kindVersion: description: "Kind version" required: false - default: 0.31.0 + default: 0.32.0 registry: description: "Image used for Minikube Registry" required: false @@ -25,7 +25,7 @@ inputs: cloudProviderVersion: description: "Version of kind cloud-provider image" required: false - default: 0.6.0 + default: 0.11.0 runs: using: "composite" diff --git a/.github/actions/dependencies/setup-kind/setup-kind.sh b/.github/actions/dependencies/setup-kind/setup-kind.sh index be333f9..e6e9d3e 100755 --- a/.github/actions/dependencies/setup-kind/setup-kind.sh +++ b/.github/actions/dependencies/setup-kind/setup-kind.sh @@ -3,10 +3,10 @@ set -xe rm -rf ~/.kube -KIND_VERSION=${KIND_VERSION:-"v0.31.0"} -KIND_CLOUD_PROVIDER_VERSION=${KIND_CLOUD_PROVIDER_VERSION:-"v0.10.0"} +KIND_VERSION=${KIND_VERSION:-"v0.32.0"} +KIND_CLOUD_PROVIDER_VERSION=${KIND_CLOUD_PROVIDER_VERSION:-"v0.11.0"} # To properly upgrade Kind version check the releases in github https://github.com/kubernetes-sigs/kind/releases and use proper image based on Kind version -KIND_LATEST_DEFAULT_IMAGE="kindest/node:v1.35.0@sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f" +KIND_LATEST_DEFAULT_IMAGE="kindest/node:v1.36.1@sha256:3489c7674813ba5d8b1a9977baea8a6e553784dab7b84759d1014dbd78f7ebd5" KIND_OLDEST_DEFAULT_IMAGE="kindest/node:v1.30.13@sha256:397209b3d947d154f6641f2d0ce8d473732bd91c87d9575ade99049aa33cd648" KIND_NODE_IMAGE=${KIND_NODE_IMAGE:-$KIND_LATEST_DEFAULT_IMAGE} # Replace latest as one special version From eb0bf206c11a4257c5913383eab6f00bc6561430 Mon Sep 17 00:00:00 2001 From: Jakub Stejskal Date: Thu, 13 Aug 2026 22:33:33 +0200 Subject: [PATCH 2/2] Fix kind tests Signed-off-by: Jakub Stejskal --- .github/workflows/test-dependencies.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-dependencies.yml b/.github/workflows/test-dependencies.yml index c30aa04..4aee7b9 100644 --- a/.github/workflows/test-dependencies.yml +++ b/.github/workflows/test-dependencies.yml @@ -194,19 +194,19 @@ jobs: - kindNodeImage: latest controlNodes: 1 workerNodes: 1 - expectedK8sVersion: "1.35" + expectedK8sVersion: "1.36" - kindNodeImage: oldest controlNodes: 1 workerNodes: 1 expectedK8sVersion: "1.30" - - kindNodeImage: kindest/node:v1.35.0@sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f # 1.35.0 for Kind 0.31 + - kindNodeImage: kindest/node:v1.36.1@sha256:3489c7674813ba5d8b1a9977baea8a6e553784dab7b84759d1014dbd78f7ebd5 # 1.36.1 for Kind 0.32 controlNodes: 1 workerNodes: 2 - expectedK8sVersion: "1.35" + expectedK8sVersion: "1.36" - kindNodeImage: latest controlNodes: 3 workerNodes: 3 - expectedK8sVersion: "1.35" + expectedK8sVersion: "1.36" steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1