mirror of https://github.com/kubernetes/kops.git
Merge pull request #11296 from ebarped/fix-create-cmd
fix: create.go doesnt add --name flag to the prompt: kops update cluster
This commit is contained in:
commit
cc16b528f6
|
@ -226,7 +226,7 @@ func RunCreate(ctx context.Context, f *util.Factory, out io.Writer, c *CreateOpt
|
|||
// so let's advise the user how to engage the cloud provider and deploy
|
||||
if sb.String() != "" {
|
||||
fmt.Fprintf(&sb, "\n")
|
||||
fmt.Fprintf(&sb, "To deploy these resources, run: kops update cluster %s --yes\n", clusterName)
|
||||
fmt.Fprintf(&sb, "To deploy these resources, run: kops update cluster --name %s --yes\n", clusterName)
|
||||
fmt.Fprintf(&sb, "\n")
|
||||
}
|
||||
_, err := out.Write(sb.Bytes())
|
||||
|
|
Loading…
Reference in New Issue