Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/dependencies/setup-kind/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/dependencies/setup-kind/setup-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading