blob: 9ebb1a0f4a0a5b26664f35f69eb83561552bc23c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#Add datasource
Modify "url" in the datasources section of ./charts/grafana/grafana-values.yaml based on the Prometheus or any other service created
#copy the custom dashboards definition into the folder ./charts/grafana/dashboards
Example,
cp ~/dashboard1.json ./charts/grafana/dashboards/
#create configmap that imports .json file as config
configmap found at ./charts/grafana/templates/configmap-add-dashboard.yaml
#Install visualization helm package
helm install -n graf-prometheus . -f ./grafana-values.yaml
|