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)