To test my images I normally load them into my kind cluster by running on my macOS laptop something like ...
kind load docker-image foo/bar-1.0.0:latest
How do I see what images have already been loaded ?
Get name of a node by running kubectl get nodes
.
Get into the node by running docker exec -ti <nodename> bash
After getting into the node you can just run crictl images
to see images loaded on that node.