From 309f5681836ecc9b240e258e7976964ebe68fadc Mon Sep 17 00:00:00 2001 From: Yolanda Robla Date: Thu, 1 Aug 2019 10:22:24 +0200 Subject: [PATCH] Add a comment about ignition and UPI When manifests are generated, there is a comment explaining on how to create the cluster. Add also the comment for using UPI and ignition files. Signed-off-by: Yolanda Robla Change-Id: I6fcd3850894c4939926935aee255fca06da50124 --- pkg/manifests/manifests.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/manifests/manifests.go b/pkg/manifests/manifests.go index ea8434b..90ef926 100644 --- a/pkg/manifests/manifests.go +++ b/pkg/manifests/manifests.go @@ -217,6 +217,7 @@ func MergeManifests(content string, siteBuildPath string) { os.Exit(1) } else { log.Println(fmt.Sprintf("*** Manifest generation finished. You can run now: %s/requirements/openshift-install create cluster --dir=%s/final_manifests to create the site cluster ***", siteBuildPath, siteBuildPath)) + log.Println(fmt.Sprintf("If using UPI you can generate ignition files with: %s/requirements/openshift-install create ignition-configs --dir=%s/final_manifests", siteBuildPath, siteBuildPath)) log.Println(fmt.Sprintf("A profile.env file has been generated inside %s/profile.env, you can source it before starting the openshift-install command", siteBuildPath)) log.Println(fmt.Sprintf("In order to destroy the cluster you can run: %s/requirements/openshift-install destroy cluster --dir %s/final_manifests", siteBuildPath, siteBuildPath)) } -- 2.16.6