OpenClawPVCNearlyFull
Meaning
Section titled “Meaning”The PersistentVolumeClaim for an OpenClaw instance is over 80% full.
Impact
Section titled “Impact”If the PVC fills up completely, the instance will be unable to write data, causing failures in workspace operations, config updates, and skill installations.
Diagnosis
Section titled “Diagnosis”# Check PVC usagekubectl exec <name>-0 -n <namespace> -c openclaw -- df -h /home/openclaw/.openclaw/
# Check PVC sizekubectl get pvc -n <namespace> -l app.kubernetes.io/instance=<name>
# Check what is consuming spacekubectl exec <name>-0 -n <namespace> -c openclaw -- du -sh /home/openclaw/.openclaw/*/
# Check if large files were created by the agentkubectl exec <name>-0 -n <namespace> -c openclaw -- find /home/openclaw/.openclaw/ -size +100M -type fMitigation
Section titled “Mitigation”- Clean up workspace - Remove unnecessary files from the workspace directory
- Increase PVC size - If the StorageClass supports volume expansion, increase
spec.storage.persistence.size - Backup and recreate - If volume expansion is not supported, backup data, delete the instance, increase size, and restore
- Check skills - Installed npm packages can consume significant space; review
spec.skills