Files
mqtt2prometheus/helm/templates/configmap.yaml
Christoph Petrausch 220dd80171 Add an helm chart
2026-02-15 22:22:51 +01:00

12 lines
249 B
YAML

{{- if .Values.config }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "helm.fullname" . }}-config
labels:
{{- include "helm.labels" . | nindent 4 }}
data:
config.yaml: |
{{- toYaml .Values.config | nindent 4 }}
{{- end }}