I have problem with kubernetes (minikube) and pull images from local image repository on docker. Docker repository was created:
docker run --entrypoint htpas
For minikube to pull from your own local docker registry, the tag affects the pull policy. Per Images docs, pull policy is IfNotPresent by default EXCEPT if
:latest as the tag for the image to useIn those cases the pull policy will effectively default to Always, which will attempt to pull from docker hub. This will cause minikube to be unable to fetch local images that have no tag or "latest" tag.
Moral of the story is, don't rely on the default because it is too confusing :)
So always explicitly state the pull policy:
IfNotPresent or Never for the local imagesAlways for those public images that use a tag like "latest" or "stable" (because the image the tag
points will change over time), and IfNotPresent for tags that
always point to the same image (to avoid fetching more than
necessary)This means that if you avoid using tags like latest and stable etc, there is only one rule to follow:
imagePullPolicy in your spec (or on the command line in the case of run) to IfNotPresent, as this is will always look for it locally first, and go to public registry if it is not found locally, and this will work whether or not you are deploying into minikube or cloud.