Skip to content

Commit ae94020

Browse files
authored
update kind to default to release v0.24.0 (#122)
Signed-off-by: cpanato <[email protected]>
1 parent 9fdad06 commit ae94020

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/test.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
- name: Create kind cluster with custom name
9696
uses: ./
9797
with:
98-
version: "v0.21.0"
98+
version: "v0.23.0"
9999

100100
- name: Test
101101
run: |
@@ -130,7 +130,7 @@ jobs:
130130
- name: Create kind cluster with custom name
131131
uses: ./
132132
with:
133-
kubectl_version: "v1.29.3"
133+
kubectl_version: "v1.31.0"
134134

135135
- name: Test
136136
run: |
@@ -146,7 +146,7 @@ jobs:
146146
- name: Create kind cluster with custom name
147147
uses: ./
148148
with:
149-
node_image: "kindest/node:v1.24.12"
149+
node_image: "kindest/node:v1.31.0"
150150

151151
- name: Test
152152
run: |
@@ -162,7 +162,7 @@ jobs:
162162
- name: Create kind cluster with custom name
163163
uses: ./
164164
with:
165-
kubectl_version: "v1.29.3"
165+
kubectl_version: "v1.31.0"
166166
ignore_failed_clean: true
167167

168168
- name: Test

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ For more information, reference the GitHub Help Documentation for [Creating a wo
1515

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

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

action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ branding:
66
icon: box
77
inputs:
88
version:
9-
description: "The kind version to use (default: v0.22.0)"
9+
description: "The kind version to use (default: v0.24.0)"
1010
required: false
11-
default: "v0.22.0"
11+
default: "v0.24.0"
1212
config:
1313
description: "The path to the kind config file"
1414
required: false
@@ -31,9 +31,9 @@ inputs:
3131
default: "0"
3232
required: false
3333
kubectl_version:
34-
description: "The kubectl version to use (default: v1.29.3)"
34+
description: "The kubectl version to use (default: v1.30.4)"
3535
required: false
36-
default: "v1.29.3"
36+
default: "v1.30.4"
3737
install_only:
3838
description: "Skips cluster creation, only install kind (default: false)"
3939
required: false

kind.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ set -o errexit
1818
set -o nounset
1919
set -o pipefail
2020

21-
DEFAULT_KIND_VERSION=v0.22.0
21+
DEFAULT_KIND_VERSION=v0.24.0
2222
DEFAULT_CLUSTER_NAME=chart-testing
23-
DEFAULT_KUBECTL_VERSION=v1.29.3
23+
DEFAULT_KUBECTL_VERSION=v1.30.4
2424

2525
show_help() {
2626
cat << EOF

0 commit comments

Comments
 (0)