Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update kind to use release v0.26.0 #129

Merged
merged 1 commit into from
Dec 17, 2024
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
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ branding:
icon: box
inputs:
version:
description: "The kind version to use (default: v0.24.0)"
description: "The kind version to use (default: v0.26.0)"
required: false
default: "v0.24.0"
default: "v0.26.0"
config:
description: "The path to the kind config file"
required: false
Expand All @@ -31,9 +31,9 @@ inputs:
default: "0"
required: false
kubectl_version:
description: "The kubectl version to use (default: v1.30.4)"
description: "The kubectl version to use (default: v1.31.4)"
required: false
default: "v1.30.4"
default: "v1.31.4"
install_only:
description: "Skips cluster creation, only install kind (default: false)"
required: false
Expand Down
4 changes: 2 additions & 2 deletions kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ set -o errexit
set -o nounset
set -o pipefail

DEFAULT_KIND_VERSION=v0.24.0
DEFAULT_KIND_VERSION=v0.26.0
DEFAULT_CLUSTER_NAME=chart-testing
DEFAULT_KUBECTL_VERSION=v1.30.4
DEFAULT_KUBECTL_VERSION=v1.31.4

show_help() {
cat << EOF
Expand Down
Loading