I ran:
helm install -f values.yaml --name=dashboard stable/grafana
with the values:
server:
adminUser: admin
installPlugins: ['raintank-kubernetes-app']
ingress:
enabled: true
hosts:
- grafana.example.com
annotations:
kubernetes.io/ingress.class: nginx
kubernetes.io/tls-acme: 'true'
tls:
- secretName: dashboard-grafana-tls
hosts:
- grafana.example.com
And it worked when I ran
helm install -f values.yaml --name=dashboard stable/grafana --version=0.3.0
Created a pull request that fixes this
Just ran into the same issue over here.
Just got the same problem. I just deleted all elements in installPlugins and the problem gone. But what if I want to use plugins? )
Most helpful comment
Created a pull request that fixes this
956