Skip to content

Instantly share code, notes, and snippets.

@vutkin
Forked from reegnz/README.md
Created September 25, 2024 09:01
Show Gist options
  • Save vutkin/7c74e31816e641d059893f0841287888 to your computer and use it in GitHub Desktop.
Save vutkin/7c74e31816e641d059893f0841287888 to your computer and use it in GitHub Desktop.
Listing all container images being used in kubernetes cluster

Listing all container images being used in kubernetes cluster

Getting all images referenced in pod specs:

kubectl get pods -A -o json  |
  jq -r '[.items[].spec | (.initContainers // empty | .[].image), .containers[].image] | unique | sort | .[]'

Getting all images cached on nodes:

kubectl get nodes -A -o json  | jq -r '[.items[].status.images[].names[-1]] | unique | sort | .[]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment