You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
572 B
20 lines
572 B
{{- if .Values.global.monitoring.enabled }}
|
|
{{- $files := .Files.Glob "dashboards/*.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" $dashboardName | lower | replace "_" "-" }}
|
|
namespace: {{ $.Release.Namespace }}
|
|
labels:
|
|
grafana_dashboard: "1"
|
|
data:
|
|
{{ $dashboardName }}.json: {{ $.Files.Get $path | toJson }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|