Search code examples
javakubernetesdeploymentcontainerskubernetes-helm

Error: failed to download "xxx" (hint: running `helm repo update` may help)


I am trying to see the details (values, etc) of an existing helm-chart using:

helm show values xxx -n namespace

Getting Error:

failed to download "xxx" (hint: running `helm repo update` may help)

What should I do to fix this?


Solution

  • You can use helm -n <namespace> get values <release-name> to get the values of installed chart.