From: sheetalsingala Date: Fri, 10 Jul 2020 17:26:52 +0000 (-0400) Subject: Add message to destroy bootstrap VM X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=0fae0c96fbb578fcd26f8b1dfa35c9c153d2b617;p=kni%2Finstaller.git Add message to destroy bootstrap VM Signed-off-by: sheetalsingala Change-Id: If351f1a282c6f47e3bc3c21631a6ff46d0786bd8 Signed-off-by: sheetalsingala --- diff --git a/pkg/manifests/manifests.go b/pkg/manifests/manifests.go index 1a5dc02..9b5cce5 100644 --- a/pkg/manifests/manifests.go +++ b/pkg/manifests/manifests.go @@ -220,7 +220,7 @@ func MergeManifests(content string, siteBuildPath string) string { fmt.Fprintf(&builder, "*** Manifest generation finished. You can run now: %s/requirements/openshift-install create cluster --dir=%s/final_manifests to create the site cluster ***\n", siteBuildPath, siteBuildPath) fmt.Fprintf(&builder, "If using UPI you can generate ignition files with: %s/requirements/openshift-install create ignition-configs --dir=%s/final_manifests\n", siteBuildPath, siteBuildPath) - fmt.Fprintf(&builder, "If you are using baremetal automation you can deploy masters and workers with: ./knictl deploy_masters , ./knictl deploy_workers . You could destroy the cluster with: ./knictl destroy_cluster \n") + fmt.Fprintf(&builder, "If you are using baremetal automation you can deploy masters and workers with: ./knictl deploy_masters , ./knictl deploy_workers . Destroy the bootstrap VM once the deploy_workers command is initiated with: virsh destroy . You could destroy the cluster with: ./knictl destroy_cluster \n") fmt.Fprintf(&builder, "A profile.env file has been generated inside %s/profile.env, you can source it before starting the openshift-install command\n", siteBuildPath) fmt.Fprintf(&builder, "In order to destroy the cluster you can run: %s/requirements/openshift-install destroy cluster --dir %s/final_manifests", siteBuildPath, siteBuildPath)