Helm Find Repository URL For a Release

Let’s say I have this release called mongodb in mongo Kubernetes namespace: For this release (mongodb), if I want to find out which repository (URL) the mongodb-sharded-5.0.17 chart came from then one way is to figure out the environment from which the helm chart was installed and run helm search repo there: But in some […]

Where Does Helm Store Repository Information Locally?

When we execute the helm repo add command, where is the repository information (name, URL, index.yaml, etc.) stored locally? To find that out, hit the following command: The HELM_REPOSITORY_CONFIG path is where the repository information is stored when you helm repo add or helm repo update. This file includes the URL, authentication details, etc. The […]