Added solution message for not found service.

pull/4619/head
Aida Ghazizadeh 2019-06-26 23:39:44 -07:00 committed by Medya Ghazizadeh
parent d6a839b20a
commit d5ded27674
1 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,11 @@ func re(s string) *regexp.Regexp {
// vmProblems are VM related problems
var vmProblems = map[string]match{
"SERVICE_NOT_FOUND": {
Regexp: re(`Could not find finalized endpoint being pointed to by`),
Advice: "Please make sure the service you are looking for is deployed or is in the correct namespace.",
Issues: []int{4599},
},
"HYPERKIT_NO_IP": {
Regexp: re(`IP address never found in dhcp leases file Temporary Error: Could not find an IP address for`),
Advice: "Install the latest minikube hyperkit driver, and run 'minikube delete'",