Problem:
After multiple deployments or rebuilds, it leaves behind temporary files, failed containers, old images, or completed/failed Kubernetes jobs. Over time, these leftovers accumulate and consume significant storage, requiring manual cleanup.
Currently, I use commands like the following to free space:
sudo crictl rmi --prune
sudo crictl rm $(sudo crictl ps -a -q) 2>/dev/null
Proposed Feature:
It would be very useful if QuickStack could provide an automatic cleanup mechanism that runs periodically or after deployments.
Is this possible ?