mirror of
https://github.com/ysoftdevs/argo-poc.git
synced 2026-05-20 22:07:04 +02:00
First apps
This commit is contained in:
+47
@@ -0,0 +1,47 @@
|
||||
{{ if .Values.grafanaDashboard.enabled -}}
|
||||
{{- $files := .Files.Glob "dashboards/*.json" }}
|
||||
{{- if $files }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMapList
|
||||
items:
|
||||
{{- range $path, $fileContents := $files }}
|
||||
{{- $dashboardName := regexReplaceAll "(^.*/)(.*)\\.json$" $path "${2}" | lower }}
|
||||
- apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
annotations:
|
||||
{{ $.Values.grafanaDashboard.annotations.name }}: {{ $.Values.grafanaDashboard.folder }}
|
||||
labels:
|
||||
{{ $.Values.grafanaDashboard.labels.name }}: {{ $dashboardName }}
|
||||
{{- include "dragonfly-operator.labels" $ | nindent 6 }}
|
||||
app.kubernetes.io/component: dashboard
|
||||
name: {{ printf "dashboard-dragonfly-operator-%s" $dashboardName | trunc 63 | trimSuffix "-" }}
|
||||
data:
|
||||
{{ $dashboardName }}.json: |-
|
||||
{{ $.Files.Get $path | indent 6}}
|
||||
{{- end }}
|
||||
{{ if $.Values.grafanaDashboard.grafanaOperator.enabled -}}
|
||||
{{- range $path, $fileContents := $files }}
|
||||
{{- $dashboardName := regexReplaceAll "(^.*/)(.*)\\.json$" $path "${2}" | lower }}
|
||||
---
|
||||
apiVersion: grafana.integreatly.org/v1beta1
|
||||
kind: GrafanaDashboard
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "dragonfly-operator.labels" $ | nindent 4 }}
|
||||
app.kubernetes.io/component: dashboard
|
||||
name: {{ printf "dragonfly-operator-%s" $dashboardName | trunc 63 | trimSuffix "-" }}
|
||||
spec:
|
||||
allowCrossNamespaceImport: {{ $.Values.grafanaDashboard.grafanaOperator.allowCrossNamespaceImport }}
|
||||
folder: {{ $.Values.grafanaDashboard.folder }}
|
||||
instanceSelector:
|
||||
matchLabels:
|
||||
{{- toYaml $.Values.grafanaDashboard.grafanaOperator.matchLabels | nindent 6 }}
|
||||
configMapRef:
|
||||
name: {{ printf "dashboard-dragonfly-operator-%s" $dashboardName | trunc 63 | trimSuffix "-" }}
|
||||
key: {{ $dashboardName }}.json
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user