diff --git a/cmd/openshift-install/create.go b/cmd/openshift-install/create.go index 0ccb45bd4d6..acfb7fafd3d 100644 --- a/cmd/openshift-install/create.go +++ b/cmd/openshift-install/create.go @@ -130,6 +130,8 @@ var ( if err2 := logClusterOperatorConditions(ctx, config); err2 != nil { logrus.Error("Attempted to gather ClusterOperator status after installation failure: ", err2) } + logrus.Info("Use the following command if you want to wait longer for install completion:") + logrus.Info("openshift-install wait-for install-complete --help") logrus.Fatal(err) } timer.StopTimer(timer.TotalTimeElapsed) diff --git a/cmd/openshift-install/waitfor.go b/cmd/openshift-install/waitfor.go index 73dfa85c96d..daf68a84293 100644 --- a/cmd/openshift-install/waitfor.go +++ b/cmd/openshift-install/waitfor.go @@ -52,7 +52,7 @@ func newWaitForBootstrapCompleteCmd() *cobra.Command { logrus.Error("Attempted to gather ClusterOperator status after wait failure: ", err2) } - logrus.Info("Use the following commands to gather logs from the cluster") + logrus.Info("Use the following command to gather logs from the cluster:") logrus.Info("openshift-install gather bootstrap --help") logrus.Fatal(err) }