Technical questionAccepted answer
kind cluster - how to see docker-images that are loaded?
k1eran
Mar 2
0 views1
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 ?
1 answer
Accepted answer · original discussion
Arghya Sadhu
PermalinkMar 2
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.
2 question comments
Use comments to ask for clarification. Post a solution as an answer.
PjoterSPermalink
Mar 2
Do you mean to list all images like
docker images? docs.docker.com/engine/reference/commandline/imagesk1eranPermalink
Mar 3
@PjoterS yes but for INSIDE the kind cluster itself. Answer from Arghya has given me enough to move on.