Skip to content

Commit

Permalink
update kind to default to release v0.24.0
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato committed Oct 7, 2024
1 parent 0958ddc commit 6213658
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Create kind cluster with custom name
uses: ./
with:
version: "v0.21.0"
version: "v0.23.0"

- name: Test
run: |
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Create kind cluster with custom name
uses: ./
with:
kubectl_version: "v1.29.3"
kubectl_version: "v1.31.0"

- name: Test
run: |
Expand All @@ -146,7 +146,7 @@ jobs:
- name: Create kind cluster with custom name
uses: ./
with:
node_image: "kindest/node:v1.24.12"
node_image: "kindest/node:v1.31.0"

- name: Test
run: |
Expand All @@ -162,7 +162,7 @@ jobs:
- name: Create kind cluster with custom name
uses: ./
with:
kubectl_version: "v1.29.3"
kubectl_version: "v1.31.0"
ignore_failed_clean: true

- name: Test
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ For more information, reference the GitHub Help Documentation for [Creating a wo

For more information on inputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#input)

- `version`: The kind version to use (default: `v0.21.0`)
- `version`: The kind version to use (default: `v0.24.0`)
- `config`: The path to the kind config file
- `node_image`: The Docker image for the cluster nodes
- `cluster_name`: The name of the cluster to create (default: `chart-testing`)
- `wait`: The duration to wait for the control plane to become ready (default: `60s`)
- `verbosity`: info log verbosity, higher value produces more output
- `kubectl_version`: The kubectl version to use (default: v1.28.6)
- `kubectl_version`: The kubectl version to use (default: v1.30.4)
- `install_only`: Skips cluster creation, only install kind (default: false)
- `ignore_failed_clean`: Whether to ignore the post delete cluster action failing (default: false)

Expand Down
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.22.0)"
description: "The kind version to use (default: v0.24.0)"
required: false
default: "v0.22.0"
default: "v0.24.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.29.3)"
description: "The kubectl version to use (default: v1.30.4)"
required: false
default: "v1.29.3"
default: "v1.30.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.22.0
DEFAULT_KIND_VERSION=v0.24.0
DEFAULT_CLUSTER_NAME=chart-testing
DEFAULT_KUBECTL_VERSION=v1.29.3
DEFAULT_KUBECTL_VERSION=v1.30.4

show_help() {
cat << EOF
Expand Down

0 comments on commit 6213658

Please sign in to comment.