Ashwin Agarkhed
Ashwin Agarkhed

Reputation: 77

Error: error inspecting object: no such container minikube

I am trying to run minikube on ubuntu 18.04 version. getting an error while starting minikube. Please help. Tried minikube delete and start again but dosent work

Aspire-E5-573G:~$ minikube start --driver=podman --container-runtime=cri-o
šŸ˜„  minikube v1.13.0 on Ubuntu 18.04
ā—  Using podman 2 is not supported yet. your version is "2.0.6". minikube might not work. use at your own risk.
āœØ  Using the podman (experimental) driver based on existing profile
šŸ‘  Starting control plane node minikube in cluster minikube
šŸ’¾  Downloading Kubernetes v1.19.0 preload ...
    > preloaded-images-k8s-v6-v1.19.0-cri-o-overlay-amd64.tar.lz4: 551.13 MiB /
šŸ”„  Restarting existing podman container for "minikube" ...
šŸ¤¦  StartHost failed, but will try again: podman inspect ip minikube: sudo -n podman container inspect -f {{.NetworkSettings.IPAddress}} minikube: exit status 125
stdout:

stderr:
Error: error inspecting object: no such container minikube

šŸ”„  Restarting existing podman container for "minikube" ...
šŸ˜æ  Failed to start podman container. Running "minikube delete" may fix it: podman inspect ip minikube: sudo -n podman container inspect -f {{.NetworkSettings.IPAddress}} minikube: exit status 125
stdout:

stderr:
Error: error inspecting object: no such container minikube


āŒ  Exiting due to GUEST_PROVISION: Failed to start host: podman inspect ip minikube: sudo -n podman container inspect -f  minikube: exit status 125
stdout:

stderr:
Error: error inspecting object: no such container minikube


šŸ˜æ  If the above advice does not help, please let us know: 
šŸ‘‰  https://github.com/kubernetes/minikube/issues/new/choose


Upvotes: 0

Views: 5456

Answers (2)

Ashwin Agarkhed
Ashwin Agarkhed

Reputation: 77

Yes you are right. I tried using docker as the driver in the arguments and it worked. Podman 2 is not yet supported

Upvotes: 0

acid_fuji
acid_fuji

Reputation: 6851

As the error already indicates podman 2 is not yet supported.

Using podman 2 is not supported yet. your version is "2.0.6". minikube might not work. use at your own risk.

The workaround for this as described here is to use version v.1.9.3.

Here`s the merge that was done to warn about podman version 2.

Upvotes: 1

Related Questions