mirror of https://github.com/easzlab/kubeasz.git
19 lines
476 B
YAML
19 lines
476 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "grafana.fullname" . }}-dashboards-json
|
|
labels:
|
|
app: {{ template "grafana.name" . }}
|
|
chart: {{ template "grafana.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
data:
|
|
{{- if .Values.dashboards }}
|
|
{{- range $key, $value := .Values.dashboards }}
|
|
{{- if hasKey $value "json" }}
|
|
{{ $key }}.json: |
|
|
{{ $value.json | indent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end -}}
|