Clean Docker build cache in Minikube to free disk space
Cleans Docker build cache in Minikube to free disk space while preserving cluster state.
/plugin marketplace add colek42/claude-plugins/plugin install nk-devops-tools@nkennedy-personalMinikube docker build cache can grow to 200GB+ from repeated Skaffold builds. This command checks disk usage and cleans the cache without destroying cluster state.
docker exec minikube df -h /var/lib/docker
This frees ~240GB+ without destroying cluster state (PVCs, volumes remain intact):
docker exec minikube docker builder prune -af && docker exec minikube docker image prune -af
Execute the disk check first, show the results, then ask if the user wants to proceed with cleanup.