mirror of https://git.rancher.io/charts
25 lines
972 B
YAML
25 lines
972 B
YAML
|
{{- if or (and .Values.grafana.enabled .Values.grafana.defaultDashboardsEnabled) .Values.grafana.forceDeployDashboards }}
|
||
|
{{- $files := .Files.Glob "dashboards-1.14/*.json" }}
|
||
|
{{- if $files }}
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMapList
|
||
|
items:
|
||
|
{{- range $path, $fileContents := $files }}
|
||
|
{{- $dashboardName := regexReplaceAll "(^.*/)(.*)\\.json$" $path "${2}" }}
|
||
|
- apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ printf "%s-%s" (include "project-prometheus-stack.fullname" $) $dashboardName | trunc 63 | trimSuffix "-" }}
|
||
|
namespace: {{ template "project-prometheus-stack.namespace" . }}
|
||
|
labels:
|
||
|
{{- if $.Values.grafana.sidecar.dashboards.label }}
|
||
|
{{ $.Values.grafana.sidecar.dashboards.label }}: "1"
|
||
|
{{- end }}
|
||
|
app: {{ template "project-prometheus-stack.name" $ }}-grafana
|
||
|
{{ include "project-prometheus-stack.labels" $ | indent 6 }}
|
||
|
data:
|
||
|
{{ $dashboardName }}.json: {{ $.Files.Get $path | toJson }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|