-
I am new to rancher desktop and I am trying to set up a local cluster to test my application but I am a bit lost on how to do this. What I have done so far:
An now, I see in the rancher-desktop dashboard that I have this deployment but the pod is in error trying to pull the image from the docker hub, even tho it is a local image. A bit of guidance will be appreciated =) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Note that if your image is using the (default) |
Beta Was this translation helpful? Give feedback.
Note that if your image is using the (default)
latest
tag, Kubernetes will by default try to pull the image every time it starts (leading to a failure to pull the image); please try with a different tag (i.e.docker build -t testapp:something .
) instead. Alternatively, set aImagePullPolicy
that isn'talways
. Please refer to upstream Kubernetes documentation for details.