Hello,
I’m a beginner with Kubernetes.
I don’t undestand a thing about local disk space (where kubernetes is installed and worked).
Since a few days I have local disk space filling up without doing anything.
I went from 60% usage to 90% and due to limitations the new docker images I create are deleted before I can push them.
Is there something to do/configure to avoid this?
- When the disk space is critically low, Docker can remove unused images automatically to free space.
Check whats causing it
docker system df
Free up space
docker system prune -a --volumes
- Automated cleanup scripts or Docker’s built-in cleanup services might be active.
- Check if there’s a system service like
docker-gc
running:
systemctl list-units --type=service | grep docker
- Disable or adjust retention policies if applicable.
Thank’s a lot, it works perfectly.
Disk space usage has decreased significantly.