Merge pull request #4794 from medyagh/hyperkit_errmap
Add advice if crash on hyperkit not installedpull/4777/head
commit
4178c4486d
|
@ -91,6 +91,11 @@ var vmProblems = map[string]match{
|
|||
Advice: "Please install the minikube kvm2 VM driver, or select an alternative --vm-driver",
|
||||
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#kvm2-driver",
|
||||
},
|
||||
"HYPERKIT_NOT_FOUND": {
|
||||
Regexp: re(`Driver "hyperkit" not found. Do you have the plugin binary .* accessible in your PATH?`),
|
||||
Advice: "Please install the minikube hyperkit VM driver, or select an alternative --vm-driver",
|
||||
URL: "https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#hyperkit-driver",
|
||||
},
|
||||
"KVM2_RESTART_NO_IP": {
|
||||
Regexp: re(`Error starting stopped host: Machine didn't return an IP after 120 seconds`),
|
||||
Advice: "The KVM driver is unable to resurrect this old VM. Please run `minikube delete` to delete it and try again.",
|
||||
|
|
Loading…
Reference in New Issue