I’m trying to understand the dev flow with Docker for Windows and Kubernetes.
I created a simple “dummy” image based on nginx called mytest:latest
Then I tried referencing this in a pod:
kubectl run -it mytest --image mytest:latest
This leads to an ImagePullError on the kubernetes pod.
At this point I’m a bit unsure how this is supposed to work, but given that the Kubernetes runs in the same moby instance as “regular” docker, and my local docker client is using the moby vm’s docker engine I can’t see why this shouldn’t work? The rest of the kubernetes install looks fine, and I can pull public images.