Andy Bavier | ab75e9e | 2020-08-06 12:05:30 -0700 | [diff] [blame] | 1 | # Copyright 2020-present Open Networking Foundation |
| 2 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 3 | |
| 4 | apiVersion: v1 |
| 5 | kind: ConfigMap |
| 6 | metadata: |
| 7 | name: {{ .Release.Name }}-dashboards |
| 8 | labels: |
| 9 | grafana_dashboard: "1" |
| 10 | data: |
Andy Bavier | c656870 | 2021-02-04 11:23:15 -0700 | [diff] [blame] | 11 | {{- range .Values.dashboards }} |
| 12 | {{- $dashboard := printf "dashboards/%s" . }} |
| 13 | {{ ($.Files.Glob $dashboard).AsConfig | indent 2 }} |
| 14 | {{- end}} |
Andy Bavier | fc9be62 | 2021-03-08 13:10:13 -0700 | [diff] [blame] | 15 | {{- if .Values.enterpriseDashboard.enabled }} |
| 16 | {{ (tpl ($.Files.Glob "dashboards/enterprise-system.json").AsConfig . ) | indent 2 }} |
| 17 | {{- end}} |