Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Minikube Start Stuck Pulling base image

enter image description here

I have been trying to setup minikube but the command is stuck at pulling base image since forever

like image 858
Sumit Mukharjee Avatar asked Sep 10 '25 13:09

Sumit Mukharjee


2 Answers

It's not stuck; it is just not showing the output of the downloading progress. It's an 800 MB file, it takes time to download.

See https://github.com/kubernetes/minikube/issues/7012

like image 159
Jaskaran S Avatar answered Sep 13 '25 07:09

Jaskaran S


If you are getting an error like failed to download kic base image or any fallback image run the following command

minikube delete --all --purge

then start the cluster using minikube start

(Link to the original issue - https://github.com/kubernetes/minikube/issues/8997)

like image 32
noob Avatar answered Sep 13 '25 06:09

noob