Skip to content

Commit

Permalink
Print the "export KUBECONFIG=..." command on its own line for easier …
Browse files Browse the repository at this point in the history
…cut-and-paste
  • Loading branch information
danwinship committed Aug 20, 2024
1 parent c739761 commit 4c66dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/openshift-install/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ func logComplete(directory, consoleURL string) error {
return err
}
logrus.Info("Install complete!")
logrus.Infof("To access the cluster as the system:admin user when using 'oc', run 'export KUBECONFIG=%s'", kubeconfig)
logrus.Infof("To access the cluster as the system:admin user when using 'oc', run\n export KUBECONFIG=%s", kubeconfig)
if consoleURL != "" {
logrus.Infof("Access the OpenShift web-console here: %s", consoleURL)
if skipPasswordPrintFlag {
Expand Down

0 comments on commit 4c66dff

Please sign in to comment.