Kubernetes Minikube Docker trying and failing to pull image Kubernetes Minikube Docker trying and failing to pull image kubernetes kubernetes

Kubernetes Minikube Docker trying and failing to pull image


The version tag of the image docker-hello-world:latest is latest, which indicates the default ImagePullPolicy is Always (see pkg/apis/core/v1/defaults.go for v1.9.x and after). It will try to pull image from the hub and not use the image already present.

One option is set a specific tag rather than latest.