mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 23:41:27 +00:00
17 lines
417 B
YAML
17 lines
417 B
YAML
{{- range (split "\n" (.Files.Get "dashboards.list")) }}
|
|
{{- $parts := split "/" . }}
|
|
{{- if eq (len $parts) 2 }}
|
|
---
|
|
apiVersion: grafana.integreatly.org/v1beta1
|
|
kind: GrafanaDashboard
|
|
metadata:
|
|
name: {{ $parts._0 }}-{{ $parts._1 }}
|
|
spec:
|
|
folder: {{ $parts._0 }}
|
|
instanceSelector:
|
|
matchLabels:
|
|
dashboards: grafana
|
|
url: http://cozystack.cozy-system.svc/dashboards/{{ . }}.json
|
|
{{- end }}
|
|
{{- end }}
|