Skip to content

Commit

Permalink
Change default cluster name to kind
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro committed Nov 3, 2020
1 parent 2b1f59e commit abc2aad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For more information on inputs, see the [API Documentation](https://developer.gi
- `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`)
- `cluster_name`: The name of the cluster to create (default: `kind`)
- `wait`: The duration to wait for the control plane to become ready (default: `60s`)
- `log_level`: The log level for KinD
- `registry`: Configures a registry on localhost:5000 to be used with KinD (default: `false`)
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
node_image:
description: "The Docker image for the cluster nodes"
cluster_name:
description: "The name of the cluster to create (default: chart-testing)"
description: "The name of the cluster to create (default: kind)"
wait:
description: "The duration to wait for the control plane to become ready (default: 60s)"
log_level:
Expand Down
2 changes: 1 addition & 1 deletion cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set -o errexit
set -o nounset
set -o pipefail

DEFAULT_CLUSTER_NAME=chart-testing
DEFAULT_CLUSTER_NAME=kind

main() {
args=()
Expand Down
4 changes: 2 additions & 2 deletions kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ set -o nounset
set -o pipefail

DEFAULT_KIND_VERSION=v0.9.0
DEFAULT_CLUSTER_NAME=chart-testing
DEFAULT_CLUSTER_NAME=kind
KUBECTL_VERSION=v1.18.6

show_help() {
Expand All @@ -28,7 +28,7 @@ Usage: $(basename "$0") <options>
-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)"
-n, --cluster-name The name of the cluster to create (default: $DEFAULT_CLUSTER_NAME)"
-w, --wait The duration to wait for the control plane to become ready (default: 60s)"
-l, --log-level The log level for kind [panic, fatal, error, warning, info, debug, trace] (default: warning)
Expand Down

0 comments on commit abc2aad

Please sign in to comment.