From 44500b5b8d80fa29ea561bc7861dc7c037ad1175 Mon Sep 17 00:00:00 2001 From: ebarped Date: Fri, 23 Apr 2021 10:57:18 +0200 Subject: [PATCH] create.go: add --name to kops update cluster command --- cmd/kops/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kops/create.go b/cmd/kops/create.go index a1f7ebff7a89a..6c1e3129dc902 100644 --- a/cmd/kops/create.go +++ b/cmd/kops/create.go @@ -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())