Skip to content

Commit 92086f6

Browse files
authored
bump kind and kubectl and also nodejs (#150)
Signed-off-by: Carlos Panato <ctadeu@gmail.com>
1 parent 7cd7463 commit 92086f6

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ 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.29.0`)
18+
- `version`: The kind version to use (default: `v0.30.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.30.4)
25-
- `registry`: Whether to configure an insecure local registry (default: false)
26-
- `registry_image`: The registry image to use (default: registry:2)
27-
- `registry_name`: The registry name to use (default: kind-registry)
28-
- `registry_port`: The local port used to bind the registry (default: 5000)
29-
- `registry_enable_delete`: Enable delete operations on the registry (default: false)
30-
- `install_only`: Skips cluster creation, only install kind (default: false)
31-
- `ignore_failed_clean`: Whether to ignore the post delete cluster action failing (default: false)
32-
- `cloud_provider`: Whether to use cloud provider loadbalancer (default: false)
24+
- `kubectl_version`: The kubectl version to use (default: `v1.34.0`)
25+
- `registry`: Whether to configure an insecure local registry (default: `false`)
26+
- `registry_image`: The registry image to use (default: `registry:2`)
27+
- `registry_name`: The registry name to use (default: `kind-registry`)
28+
- `registry_port`: The local port used to bind the registry (default: `5000`)
29+
- `registry_enable_delete`: Enable delete operations on the registry (default: `false`)
30+
- `install_only`: Skips cluster creation, only install kind (default: `false`)
31+
- `ignore_failed_clean`: Whether to ignore the post delete cluster action failing (default: `false`)
32+
- `cloud_provider`: Whether to use cloud provider loadbalancer (default: `false`)
3333

3434
### Example Workflow
3535

action.yml

Lines changed: 5 additions & 5 deletions
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.29.0)"
9+
description: "The kind version to use (default: v0.30.0)"
1010
required: false
11-
default: "v0.29.0"
11+
default: "v0.30.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.31.11)"
34+
description: "The kubectl version to use (default: v1.34.0)"
3535
required: false
36-
default: "v1.31.11"
36+
default: "v1.34.0"
3737
registry:
3838
description: "Whether to configure an insecure local registry (default: false)"
3939
required: false
@@ -67,6 +67,6 @@ inputs:
6767
required: false
6868
default: "false"
6969
runs:
70-
using: "node20"
70+
using: "node24"
7171
main: "main.js"
7272
post: "cleanup.js"

cleanup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ main() {
3333
fi
3434

3535
docker rm -f "${registry_args[@]}" || "${INPUT_IGNORE_FAILED_CLEAN}"
36-
36+
3737
kind delete cluster "${args[@]}" || "${INPUT_IGNORE_FAILED_CLEAN}"
3838
}
3939

kind.sh

Lines changed: 2 additions & 2 deletions
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.29.0
21+
DEFAULT_KIND_VERSION=v0.30.0
2222
DEFAULT_CLUSTER_NAME=chart-testing
23-
DEFAULT_KUBECTL_VERSION=v1.31.11
23+
DEFAULT_KUBECTL_VERSION=v1.34.0
2424
DEFAULT_CLOUD_PROVIDER_KIND_VERSION=0.6.0
2525

2626
show_help() {

registry.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ parse_command_line() {
8787
echo "ERROR: '-p|--registry-port' cannot be empty." >&2
8888
show_help
8989
exit 1
90-
fi
90+
fi
9191
;;
9292
-d|--enable-delete)
9393
if [[ -n "${2:-}" ]]; then
9494
enable_delete="$2"
9595
shift
9696
else
9797
enable_delete=true
98-
fi
98+
fi
9999
;;
100100
--cluster-name)
101101
if [[ -n "${2:-}" ]]; then

0 commit comments

Comments
 (0)