Skip to content

Commit

Permalink
bump kind to use v0.17.0 and kubectl v1.25.5 (#73)
Browse files Browse the repository at this point in the history
* bump kind to use v0.17.0 and kubectl v1.25.5

Signed-off-by: cpanato <ctadeu@gmail.com>

* Update action.yml

Signed-off-by: David J. M. Karlsen <david@davidkarlsen.com>

Signed-off-by: cpanato <ctadeu@gmail.com>
Signed-off-by: David J. M. Karlsen <david@davidkarlsen.com>
Co-authored-by: David J. M. Karlsen <david@davidkarlsen.com>
  • Loading branch information
cpanato and davidkarlsen committed Dec 12, 2022
1 parent e6cfd90 commit d8ccf8f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0

- name: Create kind cluster
uses: ./
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0

- name: Create kind cluster with custom verbosity
uses: ./
Expand All @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0

- name: Create kind cluster with custom name
uses: ./
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0

- name: Only install kind without starting a cluster
uses: ./
Expand All @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0

- name: Create kind cluster with custom name
uses: ./
Expand All @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0

- name: Create kind cluster with custom name
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -15,7 +15,7 @@ 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.16.0`)
- `version`: The kind version to use (default: `v0.17.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`)
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Expand Up @@ -6,9 +6,9 @@ branding:
icon: box
inputs:
version:
description: "The kind version to use (default: v0.16.0)"
description: "The kind version to use (default: v0.17.0)"
required: false
default: "v0.16.0"
default: "v0.17.0"
config:
description: "The path to the kind config file"
required: false
Expand Down
4 changes: 2 additions & 2 deletions kind.sh
Expand Up @@ -18,9 +18,9 @@ set -o errexit
set -o nounset
set -o pipefail

DEFAULT_KIND_VERSION=v0.16.0
DEFAULT_KIND_VERSION=v0.17.0
DEFAULT_CLUSTER_NAME=chart-testing
DEFAULT_KUBECTL_VERSION=v1.23.12
DEFAULT_KUBECTL_VERSION=v1.25.5

show_help() {
cat << EOF
Expand Down

0 comments on commit d8ccf8f

Please sign in to comment.