Skip to content

Instantly share code, notes, and snippets.

@duboisf
Last active July 22, 2025 14:51
Show Gist options
  • Save duboisf/b73fb645b73bd809e8d12afddb2cdc57 to your computer and use it in GitHub Desktop.
Save duboisf/b73fb645b73bd809e8d12afddb2cdc57 to your computer and use it in GitHub Desktop.
Find all images used in the current kubernetes cluster with image sizes
kubectl get no -o json
| from json
| get items
| select status.images status.nodeInfo.architecture
| rename images arch
| flatten
| update images.names { |in|
if ($in | length) > 1 {
$in | filter { $in !~ @sha }
} else {
$in
}
}
| flatten
| flatten
| update sizeBytes { into filesize }
| sort-by sizeBytes
| uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment