Update variables set in Helm Chart from a previous installation

11/8/2018

I've installed Grafana using helm as follows:

helm install --name grafana stable/grafana

Now I want to update the previous installation without deleting it to set an env variable as follows:

helm install --name grafana stable/grafana --set env.GF_AUTH_ANONYMOUS_ENABLED=true

but I've got an error

Error: a release named grafana already exists

If I delete the previous installation I will probably delete the dashboards I've already made

-- BlackBishop
grafana
kubernetes-helm

1 Answer

11/8/2018
-- Emruz Hossain
Source: StackOverflow