20

enter image description here

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

Sumit Mukharjee
  • 312
  • 2
  • 9

5 Answers5

27

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

Jaskaran S
  • 286
  • 2
  • 2
16

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)

noob
  • 141
  • 1
  • 2
  • 8
3

Do the following:

# Remove all old data
minikube delete

# start a fresh instance
minikube start

# Start with a different driver
minikube start --driver=<docker/hyperkit>
CodeWizard
  • 128,036
  • 21
  • 144
  • 167
3

If you are using docker driver, you can also manually download the image.

Executing : docker pull gcr.io/k8s-minikube/kicbase:v0.0.32 did the trick for me.

amolgautam
  • 897
  • 10
  • 20
3

@amolgautam answer worked for me as well. Only making a small addition in case if someone gets stuck

You need to add --base-image when executing the minikube start command in case if the image you downloaded is not the latest one being used by Minikube.

minikube start --base-image "gcr.io/k8s-minikube/kicbase:v0.0.32"