I am using Kubernetes for the first time, and having a nasty time trying to reference a private DockerHub image.
In the yaml, this is what I have:
.... many other lines
-image: registry.hub.docker.com/MY_DOCKER_HUB_USERNAME/MY_IMAGE_NAME:latest
The error I'm getting says
Failed to pull image "registry.hub.docker.com/MY_DOCKER_HUB_USERNAME/MY_IMAGE_NAME:latest":
image pull failed for registry.hub.docker.com/MY_DOCKER_HUB_USERNAME/MY_IMAGE_NAME:latest,
this may be because there are no credentials on this request.
details: (Error: image MY_DOCKER_HUB_USERNAME/MY_IMAGE_NAME not found)
Now, I am a total know-nothing when it comes to Kubernetes configuration, but so far, where have I gone wrong?