Reputation: 114
Kubernetes Garbage Collection have a option to delete the images when it reached to a certain percentage of disk usages Link
Is there any way to delete all docker images which is more than three days old and not being used now instead of doing it manually ?
Upvotes: 0
Views: 3190
Reputation: 17689
Follow the below steps
Upvotes: 1
Reputation: 2565
You could also simply connect to the node in question and run docker system prune -f
there directly.
Upvotes: 1