Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 415
k1eran Avatar asked Mar 02 '20 11:03

k1eran


1 Answers

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.

like image 81
Arghya Sadhu Avatar answered Oct 24 '22 21:10

Arghya Sadhu