hyperv Delete: call StopHost before removing VM

pull/7160/head
Thomas Stromberg 2020-03-23 09:41:00 -07:00
parent 5595564015
commit 14f8ee3984
2 changed files with 14 additions and 6 deletions

View File

@ -402,7 +402,7 @@ func deleteProfileDirectory(profile string) {
out.T(out.DeletingHost, `Removing {{.directory}} ...`, out.V{"directory": machineDir})
err := os.RemoveAll(machineDir)
if err != nil {
exit.WithError("Unable to remove machine directory: %v", err)
exit.WithError("Unable to remove machine directory", err)
}
}
}

View File

@ -75,18 +75,26 @@ func DeleteHost(api libmachine.API, machineName string) error {
return mcnerror.ErrHostDoesNotExist{Name: machineName}
}
// This is slow if SSH is not responding, but HyperV hangs otherwise, See issue #2914
// Hyper-V requires special care to avoid ACPI and file locking issues
if host.Driver.DriverName() == driver.HyperV {
if err := trySSHPowerOff(host); err != nil {
glog.Infof("Unable to power off minikube because the host was not found.")
if err := StopHost(api, machineName); err != nil {
glog.Warningf("stop host: %v", err)
}
out.T(out.DeletingHost, "Successfully powered off Hyper-V. minikube driver -- {{.driver}}", out.V{"driver": host.Driver.DriverName()})
// Hack: give the Hyper-V VM more time to stop before deletion
time.Sleep(1 * time.Second)
}
out.T(out.DeletingHost, `Deleting "{{.profile_name}}" in {{.driver_name}} ...`, out.V{"profile_name": machineName, "driver_name": host.DriverName})
if err := host.Driver.Remove(); err != nil {
return errors.Wrap(err, "host remove")
glog.Warningf("remove failed, will retry: %v", err)
time.Sleep(2 * time.Second)
nerr := host.Driver.Remove()
if nerr != nil {
return errors.Wrap(nerr, "host remove retry")
}
}
if err := api.Remove(machineName); err != nil {
return errors.Wrap(err, "api remove")
}