kind cluster - how to see docker-images that are loaded?

3/2/2020

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 ?

kind = https://github.com/kubernetes-sigs/kind

-- k1eran
docker
kubernetes

1 Answer

3/2/2020

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.

-- Arghya Sadhu
Source: StackOverflow