mirror of https://github.com/kubernetes/kops.git
Merge pull request #6208 from joshphp/clarify-clustername-output
Print --name with `kops update cluster`
This commit is contained in:
commit
ecf280a070
|
@ -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())
|
||||
|
|
Loading…
Reference in New Issue