specifically find files

Signed-off-by: Tim Collins <tim@thecollins.team>
This commit is contained in:
Tim Collins 2024-11-21 08:02:42 +00:00
parent b1a5de7f24
commit 095bf5bc97
No known key found for this signature in database
GPG key ID: 09F625E00301ED18

View file

@ -103,7 +103,8 @@ jobs:
echo "Disk usage of charts/argo-workflows/templates..."
du -sh charts/argo-workflows/templates
echo "Largest files in charts/argo-workflows..."
du -a charts/argo-workflows/ | sort -n -r | head -n 5
#du -a charts/argo-workflows/ | sort -n -rh | head -n 5
find charts/argo-workflows/ -type f -exec du -Sh {} + | sort -rh | head -n 5
echo "---"
echo "contents of charts/argo-workflows..."
ls -lah charts/argo-workflows