We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am currently trying to install grafana in HA via Helm using the following values file, DB info has been redacted for security.
helm install grafana grafana/grafana -f grafanavalues.yaml --namespace grafana
replicas: 2 # Adjust the number of replicas as needed
database: type: mysql host: :3306 name: grafana user: grafana password:
persistence: type: pvc enabled: true storageClassName: gp3 accessModes: - ReadWriteOnce size: 100Gi
env: GF_UNIFIED_ALERTING_HA_PEERS: "grafana-alerting.grafana:9094" GF_UNIFIED_ALERTING_HA_LISTEN_ADDRESS: "${POD_IP}:9094" GF_UNIFIED_ALERTING_HA_ADVERTISE_ADDRESS: "${POD_IP}:9094"
extraContainers:
service: type: ClusterIP
additionalServices:
However when I go to run the helm chart I get the following error..
"Error: INSTALLATION FAILED: template: grafana/templates/deployment.yaml:52:10: executing "grafana/templates/deployment.yaml" at <include "grafana.pod" .>: error calling include: template: grafana/templates/_pod.tpl:1207:10: executing "grafana.pod" at <.>: wrong type for value; expected string; got []interface {}"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am currently trying to install grafana in HA via Helm using the following values file, DB info has been redacted for security.
helm install grafana grafana/grafana -f grafanavalues.yaml --namespace grafana
replicas: 2 # Adjust the number of replicas as needed
database:
type: mysql
host: :3306
name: grafana
user: grafana
password:
persistence:
type: pvc
enabled: true
storageClassName: gp3
accessModes:
- ReadWriteOnce
size: 100Gi
env:
GF_UNIFIED_ALERTING_HA_PEERS: "grafana-alerting.grafana:9094"
GF_UNIFIED_ALERTING_HA_LISTEN_ADDRESS: "${POD_IP}:9094"
GF_UNIFIED_ALERTING_HA_ADVERTISE_ADDRESS: "${POD_IP}:9094"
extraContainers:
ports:
name: grafana-alert
protocol: TCP
service:
type: ClusterIP
additionalServices:
type: ClusterIP
clusterIP: None
ports:
targetPort: 9094
However when I go to run the helm chart I get the following error..
"Error: INSTALLATION FAILED: template: grafana/templates/deployment.yaml:52:10: executing "grafana/templates/deployment.yaml" at <include "grafana.pod" .>: error calling include: template: grafana/templates/_pod.tpl:1207:10: executing "grafana.pod" at <.>: wrong type for value; expected string; got []interface {}"
The text was updated successfully, but these errors were encountered: