We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 837410b commit b334ff2Copy full SHA for b334ff2
cmd/minikube/cmd/delete.go
@@ -62,7 +62,7 @@ func runDelete(cmd *cobra.Command, args []string) {
62
}
63
64
// In the case of "none", we want to uninstall Kubernetes as there is no VM to delete
65
- if err == nil && cc.MachineConfig.VMDriver == constants.DriverNone {
+ if err == nil && (cc.MachineConfig.VMDriver == constants.DriverNone || cc.MachineConfig.VMDriver == constants.DriverGeneric) {
66
uninstallKubernetes(api, cc.KubernetesConfig, viper.GetString(cmdcfg.Bootstrapper))
67
68
0 commit comments