From 2b1f59ef152d97a8d157b8395df292a160a74dac Mon Sep 17 00:00:00 2001 From: nicolaferraro Date: Tue, 3 Nov 2020 14:54:28 +0100 Subject: [PATCH] Default to v0.9.0 --- .github/workflows/test.yaml | 1 - README.md | 2 +- action.yml | 2 +- kind.sh | 4 ++-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b3a148a..f5d1e5d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -50,7 +50,6 @@ jobs: version: - v0.9.0 - v0.8.1 - - v0.7.0 runs-on: ubuntu-latest steps: - name: Checkout diff --git a/README.md b/README.md index d658980..228bd67 100644 --- a/README.md +++ b/README.md @@ -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.8.1`) +- `version`: The KinD version to use (default: `v0.9.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`) diff --git a/action.yml b/action.yml index 2fc8c52..8c64d47 100644 --- a/action.yml +++ b/action.yml @@ -6,7 +6,7 @@ branding: icon: box inputs: version: - description: "The KinD version to use (default: v0.8.1)" + description: "The KinD version to use (default: v0.9.0)" config: description: "The path to the KinD config file" node_image: diff --git a/kind.sh b/kind.sh index c7eccf2..034b720 100755 --- a/kind.sh +++ b/kind.sh @@ -16,7 +16,7 @@ set -o errexit set -o nounset set -o pipefail -DEFAULT_KIND_VERSION=v0.8.1 +DEFAULT_KIND_VERSION=v0.9.0 DEFAULT_CLUSTER_NAME=chart-testing KUBECTL_VERSION=v1.18.6 @@ -25,7 +25,7 @@ cat << EOF Usage: $(basename "$0") -h, --help Display help - -v, --version The kind version to use (default: v0.8.1)" + -v, --version The kind version to use (default: $DEFAULT_KIND_VERSION)" -c, --config The path to the kind config file" -i, --node-image The Docker image for the cluster nodes" -n, --cluster-name The name of the cluster to create (default: chart-testing)"