본문 바로가기

IT관련

(미니큐브 에러) Failed to start podman container, no container with name or ID "minikube" found

미니큐브 사용하다가 중간에 docker(podman) 이미지를 싹 지워버렸더니 아래와 같은 에러가 발생했습니다.

minikube start 할때 아래와 같은 에러가 발생해서 미니큐브가 기동되지 않습니다.

 

[root@localhost ~]# minikube start --driver=podman --force
* minikube v1.31.2 on Oracle 8.7
! minikube skips various validations when --force is supplied; this may lead to unexpected behavior
* minikube 1.32.0 is available! Download it: https://github.com/kubernetes/minikube/releases/tag/v1.32.0
* Using the podman driver based on existing profile
* To disable this notice, run: 'minikube config set WantUpdateNotification false'

* The "podman" driver should not be used with root privileges. If you wish to continue as root, use --force.
* If you are running minikube within a VM, consider using --driver=none:
*   https://minikube.sigs.k8s.io/docs/reference/drivers/none/
* Tip: To remove this root owned cluster, run: sudo minikube delete
* Starting control plane node minikube in cluster minikube
* Pulling base image ...
E1111 17:27:49.487741   34716 cache.go:190] Error downloading kic artifacts:  not yet implemented, see issue #8426
* Restarting existing podman container for "minikube" ...
! StartHost failed, but will try again: driver start: start: sudo -n podman start --cgroup-manager cgroupfs minikube: exit status 125
stdout:

stderr:
Error: no container with name or ID "minikube" found: no such container

* Restarting existing podman container for "minikube" ...
Failed to start podman container. Running "minikube delete" may fix it: driver start: start: sudo -n podman start --cgroup-manager cgroupfs minikube: exit status 125
stdout:

stderr:
Error: no container with name or ID "minikube" found: no such container

X Exiting due to GUEST_PROVISION: error provisioning guest: Failed to start host: driver start: start: sudo -n podman start --cgroup-manager cgroupfs minikube: exit status 125
stdout:

stderr:
Error: no container with name or ID "minikube" found: no such container

 

 

여기저기 찾다가 결국 찾게된 결론은 "minikube 를 깨끗이 지우고, 다시 설치해라" 입니다.

 

[root@localhost ~]# cd ~
[root@localhost ~]# minikube delete
[root@localhost ~]# rm -rf ./minikube

 

 

위와같이 지우고나서 minkube 를 다시 재설치하면, 더이상 에러가 발생하지 않습니다.