Monitoring/helm/ntfy/templates/configmap.yaml
2025-04-21 19:51:09 +01:00

13 lines
245 B
YAML

{{- if .Values.config.enabled -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "ntfy.name" . }}
data:
server.yml: |
{{- range $key, $value := .Values.config.data }}
{{ $key }}: {{ $value }}
{{- end }}
{{- end }}