Safe to Delete

Kubernetes Helm Chart Cache Folder (~/.cache/helm)

Quick Answer: The ~/.cache/helm directory stores cached Kubernetes Helm charts and repository indexes. Deleting Helm cache is safe.

Bottom Line: It is 100% safe to delete the Helm cache folder. Deleting ~/.cache/helm will NOT delete your deployed Kubernetes cluster releases or custom Helm value YAML files.


What is the Helm Cache Folder?

Located at ~/.cache/helm on Linux/macOS (and %LocalAppData%\helm\cache on Windows), this folder is created by Helm (the package manager for Kubernetes).

Helm caches:

  • Repository Indexes (repository/): Cached YAML index files from chart repositories (e.g. Bitnami, Artifact Hub).
  • Downloaded Charts (archive/): Compressed .tgz Helm chart tarballs fetched during helm install or helm dependency build.

Over months of managing Kubernetes infrastructure, obsolete Helm chart archives accumulate, taking up 1 GB to 6 GB+.


Can You Delete Helm Cache?

✅ Yes, it is completely safe to delete.

  • No live cluster risk: Active Kubernetes workloads running in your cluster stay 100% safe.
  • Auto-fetched: Running helm repo update or helm install will automatically re-download required chart repositories.

How to Safely Clean Up Helm Cache

Method 1: Delete via Terminal (Linux / Mac)

rm -rf ~/.cache/helm/repository/*
rm -rf ~/.cache/helm/archive/*

Method 2: Delete via PowerShell (Windows)

Remove-Item -Recurse -Force $env:LocalAppData\helm\cache\*

Discussion

Loading authentication...

Related in developer

The AI Engineer's Model Disk Cleanup Guide: Hugging Face, Ollama & PyTorch

The ultimate 1,200-word field guide for AI developers and local LLM hobbyists to reclaim 200GB+ from Ollama, Hugging Face, PyTorch, and vLLM model weights.

Safe to Delete

Android Studio System Index Cache (AndroidStudio Cache)

Android Studio caches Gradle project indexes, VFS caches, and compiler artifacts. Invalidate and clear is safe.

Safe to Delete

Ansible Automation Temp & Fact Cache (~/.ansible/tmp)

Ansible stores temporary playbook execution modules and target host fact JSON caches in ~/.ansible/tmp. Clearing Ansible tmp is safe.

Safe to Delete
Back to all files