Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker driver: add solution message when container create is stuck #8629

Merged
merged 3 commits into from
Jul 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkg/minikube/problem/err_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ var vmProblems = map[string]match{
Advice: "minikube is not yet compatible with ChromeOS",
Issues: []int{6411},
},
"DOCKER_PROVISION_STUCK_CONTAINER": {
Regexp: re(`executing "" at <index (index .NetworkSettings.Ports "22/tcp") 0>`),
Advice: "Restart Docker, Ensure docker is running and then run: 'minikube delete' and then 'minikube start' again",
URL: "https://github.com/kubernetes/minikube/issues/8163#issuecomment-652627436",
Issues: []int{8163},
},
// Hyperkit
"HYPERKIT_NO_IP": {
Regexp: re(`IP address never found in dhcp leases file Temporary Error: Could not find an IP address for`),
Expand Down