-
Hi guys, I installed an image through the following command:
when I tried to create a pod using the following command:
it showed ErrImageNeverPull
but I do have this image on nerdctl images.
any ideas? heres my test.yaml file:
I am running Rancher Desktop on Windows 10. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You'll need to load the image into the You can add this flag to your After the image is loaded, check with |
Beta Was this translation helpful? Give feedback.
You'll need to load the image into the
k8s.io
namespace rather than the default if you want Kubernetes to be able to use them.You can add this flag to your
nerdctl load
command:--namespace=k8s.io
After the image is loaded, check with
nerdctl images --namespace=k8s.io
, if it's there, then your deployment/pod should work.