You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should make it possible to automatically deploy the Grafana dashboard through the Helm Chart. The Grafana Helm Chart includes a sidecar that watches ConfigMaps with the grafana_dashboard: 1 label and imports them into the Grafana instance.
Add new keys to chart/values.yaml:
metrics:
dashboard:
# If enabled, deploy a ConfigMap with our Grafana dashboard.enabled: falselabels:
grafana_dashboard: 1
Add a new file chart/templates/core/grafana-dashboard.yaml that renders the ConfigMap with the dashboard as a data field if metrics.dashboard.enabled==true. Check if we can potentially symlink the dashboard from its current configuration or we need to create a copy.
We should make it possible to automatically deploy the Grafana dashboard through the Helm Chart. The Grafana Helm Chart includes a sidecar that watches
ConfigMaps
with thegrafana_dashboard: 1
label and imports them into the Grafana instance.chart/values.yaml
:chart/templates/core/grafana-dashboard.yaml
that renders the ConfigMap with the dashboard as a data field ifmetrics.dashboard.enabled==true
. Check if we can potentially symlink the dashboard from its current configuration or we need to create a copy.Pointers:
The text was updated successfully, but these errors were encountered: