Skip to content

Commit

Permalink
Merge pull request #6208 from joshphp/clarify-clustername-output
Browse files Browse the repository at this point in the history
Print --name with `kops update cluster`
  • Loading branch information
k8s-ci-robot authored Dec 14, 2018
2 parents 4806708 + 85bfa15 commit ecf280a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/kops/create_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit ecf280a

Please sign in to comment.