diff --git a/cmd/kops/create_cluster.go b/cmd/kops/create_cluster.go index 04f0db29d1..9f2f640de7 100644 --- a/cmd/kops/create_cluster.go +++ b/cmd/kops/create_cluster.go @@ -1292,7 +1292,7 @@ func RunCreateCluster(f *util.Factory, out io.Writer, c *CreateClusterOptions) e fmt.Fprintf(&sb, " * edit your master instance group: kops edit ig --name=%s %s\n", clusterName, masters[0].ObjectMeta.Name) } fmt.Fprintf(&sb, "\n") - fmt.Fprintf(&sb, "Finally configure your cluster with: kops update cluster %s --yes\n", clusterName) + fmt.Fprintf(&sb, "Finally configure your cluster with: kops update cluster --name %s --yes\n", clusterName) fmt.Fprintf(&sb, "\n") _, err := out.Write(sb.Bytes())