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

Viewed 3574

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?

1 Answers

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

Related