-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
podman start minikube returned with exit code 125 #14424
Comments
Isn't this a bug, not support? |
kubernetes#14424 podman start minikube returned with exit code 125
while trying to reproduce today my podman container started successfully (the podman bug i am sometimes running into did not occur), but I submitted the PR above that should fix what I discovered. I'll report back when I can verify it with a container that fails to start. |
kubernetes#14424 podman start minikube returned with exit code 125
minikube start --nodes=4 stderr: 🔄 Restarting existing podman container for "minikube" ... stderr: ❌ Exiting due to GUEST_PROVISION: error provisioning guest: Failed to start host: driver start: start: podman start minikube: exit status 125 stderr: ╭───────────────────────────────────────────────────────────────────────────────────────────╮ I am getting this, can anyone help me to sort this out MacOS |
looks unrelated to this issue, if this still occurs, please open a new one. |
What Happened?
When podman fails to start minikubes container, minikube seems to ignore that error and runs into an exponential-backoff retring to ssh into the (failed to start) container.
From reading the source I think the bug is in
kic
Driver.Start()
minikube/pkg/drivers/kic/kic.go
Lines 399 to 407 in b496d66
StartContainer()
will properly return the error, andStart()
goes intoerr != nil
block as visible in the log (Postmortem inspect
). NormallyStart()
wouldreturn errors.Wrap(err, "start")
, but:err
ofStartContainer()
is overwritten witherr
fromoci.DeamonInfo()
DaemonInfo()
err
isnil
Wrap()
returnsnil
iferr
isnil
StartContainer()
also returnsnil
.Attach the log file
Operating System
Other (Debian)
Driver
Podman
The text was updated successfully, but these errors were encountered: