microscopic-garage-54074
04/07/2023, 4:57 AMminikube image ls
. Is there an equivalent command for k3d?rough-farmer-49135
04/07/2023, 10:40 AMdocker image ls
do what you're looking for?microscopic-garage-54074
04/07/2023, 5:50 PMimport
statement?rough-farmer-49135
04/07/2023, 5:55 PMdocker pull ${IMAGE_NAME}
or docker load -i ${IMAGE_TARFILE}
and then reference the same containers in your cluster. However if you can pull from a container registry to get it you don't need to do those.docker load -i ${IMAGE_TARFILE}
then you may need to do docker image ls
to verify what the docker daemon loads it as (name, potential host, & version, which will match what it was on the host that created it so if you created it then you won't need to check).microscopic-garage-54074
04/07/2023, 5:59 PM