From ca70ac22037ed9fe39debad6d21ce9f13cbc5f6b Mon Sep 17 00:00:00 2001 From: Derrik Campau Date: Sat, 26 Sep 2020 14:45:03 -0700 Subject: [PATCH] Fix small typo in create cluster help output Fixes typo in cmd/kops/create_cluster.go and docs/cli/kops_create_cluster.md where example output had filename.yamlh, changed to filename.yaml --- cmd/kops/create_cluster.go | 2 +- docs/cli/kops_create_cluster.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/kops/create_cluster.go b/cmd/kops/create_cluster.go index db0c757809..64066389dc 100644 --- a/cmd/kops/create_cluster.go +++ b/cmd/kops/create_cluster.go @@ -148,7 +148,7 @@ var ( --yes # Generate a cluster spec to apply later. - # Run the following, then: kops create -f filename.yamlh + # Run the following, then: kops create -f filename.yaml kops create cluster --name=kubernetes-cluster.example.com \ --state=s3://kops-state-1234 \ --zones=eu-west-1a \ diff --git a/docs/cli/kops_create_cluster.md b/docs/cli/kops_create_cluster.md index 558fe685b9..4334703cb8 100644 --- a/docs/cli/kops_create_cluster.md +++ b/docs/cli/kops_create_cluster.md @@ -53,7 +53,7 @@ kops create cluster [flags] --yes # Generate a cluster spec to apply later. - # Run the following, then: kops create -f filename.yamlh + # Run the following, then: kops create -f filename.yaml kops create cluster --name=kubernetes-cluster.example.com \ --state=s3://kops-state-1234 \ --zones=eu-west-1a \