blob: 2a60eb347aa6f7d338a067350a38ac43ea407875 [file] [log] [blame]
Andy Bavierab75e9e2020-08-06 12:05:30 -07001# Copyright 2020-present Open Networking Foundation
Scott Baker4cad5ee2022-06-09 14:17:35 -07002# SPDX-License-Identifier: Apache-2.0
Andy Bavierab75e9e2020-08-06 12:05:30 -07003
4apiVersion: v1
5kind: ConfigMap
6metadata:
7 name: {{ .Release.Name }}-dashboards
8 labels:
9 grafana_dashboard: "1"
10data:
Andy Bavierc6568702021-02-04 11:23:15 -070011{{- range .Values.dashboards }}
12{{- $dashboard := printf "dashboards/%s" . }}
13{{ ($.Files.Glob $dashboard).AsConfig | indent 2 }}
14{{- end}}
Andy Bavierfc9be622021-03-08 13:10:13 -070015{{- if .Values.enterpriseDashboard.enabled }}
16{{ (tpl ($.Files.Glob "dashboards/enterprise-system.json").AsConfig . ) | indent 2 }}
17{{- end}}