wekan: add

This commit is contained in:
2025-07-10 16:46:17 -04:00
parent 55b01276ba
commit 173cc0abc9
5 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{{ if .Values.configMapsManaged }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "wekan.fullname" $ }}-config
data:
{{- range $key := .Values.configMapEnv -}}
{{ if $key.value }}
{{ $key.name | indent 2 }}: {{ $key.value | toString | quote }}
{{- end }}
{{- end }}
{{ end }}