2022-09-28 22:08:30 +00:00
|
|
|
{{/* Make sure all variables are set properly */}}
|
|
|
|
{{- include "tc.common.loader.init" . }}
|
|
|
|
|
|
|
|
{{/* Render secret */}}
|
|
|
|
{{- include "immich.secret" . }}
|
|
|
|
|
|
|
|
{{/* Render config */}}
|
|
|
|
{{- include "immich.config" . }}
|
|
|
|
|
|
|
|
{{- $_ := set .Values.additionalContainers "proxy" (include "immich.proxy" . | fromYaml) -}}
|
|
|
|
{{- $_ := set .Values.additionalContainers "web" (include "immich.web" . | fromYaml) -}}
|
2022-10-19 11:59:30 +00:00
|
|
|
{{- if .Values.immich.enable_ml -}}
|
2022-09-28 22:08:30 +00:00
|
|
|
{{- $_ := set .Values.additionalContainers "ml" (include "immich.ml" . | fromYaml) -}}
|
2022-10-19 11:59:30 +00:00
|
|
|
{{- end -}}
|
2022-10-03 19:51:27 +00:00
|
|
|
{{- $_ := set .Values.additionalContainers "microservices" (include "immich.microservices" . | fromYaml) -}}
|
2022-09-28 22:08:30 +00:00
|
|
|
|
|
|
|
{{/* Render the templates */}}
|
|
|
|
{{ include "tc.common.loader.apply" . }}
|