blob: 1a23cf9166bca795c079773750464594ad87cd53 [file] [log] [blame]
gio404e2372025-07-11 12:50:26 +04001{{- if .Values.immich.configuration }}
2apiVersion: v1
3kind: ConfigMap
4metadata:
5 name: {{ .Release.Name }}-immich-config
6 labels:
7 app.kubernetes.io/instance: {{ .Release.Name }}
8 app.kubernetes.io/managed-by: {{ .Release.Service }}
9 app.kubernetes.io/name: {{ .Chart.Name }}
10 app.kubernetes.io/version: {{ .Chart.AppVersion }}
11 helm.sh/chart: {{ printf "%s-%s\n" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
12data:
13 immich-config.yaml: |
14{{- .Values.immich.configuration | toYaml | nindent 4 }}
15{{- end }}