Kubernetes list all images in pods
kubectl \
get \
pods \
--all-namespaces \
-o jsonpath='{range .items[*]}{"\n"}{.metadata.name}{":\t"}{range .spec.containers[*]}{.image}{", "}{end}{end}' | \
sort
kubectl \
get \
pods \
--all-namespaces \
-o jsonpath='{range .items[*]}{"\n"}{.metadata.name}{":\t"}{range .spec.containers[*]}{.image}{", "}{end}{end}' | \
sort