Skip to content

Instantly share code, notes, and snippets.

@gbevan
Created November 13, 2023 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbevan/b1f691e26c0d6d6b2494b48198bc9883 to your computer and use it in GitHub Desktop.
Save gbevan/b1f691e26c0d6d6b2494b48198bc9883 to your computer and use it in GitHub Desktop.
sort k8s images by size
kubectl get nodes -o json |
jq '.items[].status.images[] | [.sizeBytes, .names[0]] | @csv' -r |
sed -e 's/"//g' |
sed 's/,/ /g' |
sort -k1n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment