Add message to destroy bootstrap VM 21/3621/2
authorsheetalsingala <ssingala@redhat.com>
Fri, 10 Jul 2020 17:26:52 +0000 (13:26 -0400)
committersheetalsingala <ssingala@redhat.com>
Mon, 13 Jul 2020 12:01:47 +0000 (08:01 -0400)
Signed-off-by: sheetalsingala <ssingala@redhat.com>
Change-Id: If351f1a282c6f47e3bc3c21631a6ff46d0786bd8
Signed-off-by: sheetalsingala <ssingala@redhat.com>
pkg/manifests/manifests.go

index 1a5dc02..9b5cce5 100644 (file)
@@ -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 <site_name>, ./knictl deploy_workers <site_name>. You could destroy the cluster with: ./knictl destroy_cluster <site_name>\n")
+               fmt.Fprintf(&builder, "If you are using baremetal automation you can deploy masters and workers with: ./knictl deploy_masters <site_name>, ./knictl deploy_workers <site_name>. Destroy the bootstrap VM once the deploy_workers command is initiated with: virsh destroy <bootstrap_vm_name>. You could destroy the cluster with: ./knictl destroy_cluster <site_name>\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)