Files
manifests/charts/matomo/templates/configmaps-extras.yaml
T
mrtz 8f46e45cfb feat: Add Matomo Chart for analytics
Also adds the Digitalist Chart as Backup in case the
bitnami one stops working.
2025-09-11 10:25:17 +02:00

14 lines
376 B
YAML

{{ if .Values.extraConfigMaps.create -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: matomo-additional-config-maps
namespace: {{.Values.namespace}}
data:
{{- if and .Values.extraConfigMaps.create .Values.extraConfigMaps.data }}
{{- range $index, $content := .Values.extraConfigMaps.data }}
{{ $index }}: |-
{{ $content | indent 4 }}
{{- end }}
{{- end }}
{{- end }}