Skip to content

Commit

Permalink
Merge pull request #2696 from cwrau/fix/dashboard-configmap-label
Browse files Browse the repository at this point in the history
[grafana] fix: add missing `| quote` for `sidecar.dashboards.labelValue`
  • Loading branch information
zanhsieh authored Oct 9, 2023
2 parents a3dae92 + 68adbe2 commit d141d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/grafana/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: grafana
version: 6.60.3
version: 6.60.4
appVersion: 10.1.4
kubeVersion: "^1.8.0-0"
description: The leading tool for querying and visualizing time series and metrics.
Expand Down
2 changes: 1 addition & 1 deletion charts/grafana/templates/dashboards-json-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata:
{{- include "grafana.labels" $ | nindent 4 }}
dashboard-provider: {{ $provider }}
{{- if $.Values.sidecar.dashboards.enabled }}
{{ $.Values.sidecar.dashboards.label }}: {{ $.Values.sidecar.dashboards.labelValue }}
{{ $.Values.sidecar.dashboards.label }}: {{ $.Values.sidecar.dashboards.labelValue | quote }}
{{- end }}
{{- if $dashboards }}
data:
Expand Down

0 comments on commit d141d50

Please sign in to comment.