common.yaml 976 B

123456789101112131415161718
  1. {{- include "ix.v1.common.loader.init" . -}}
  2. {{/* Merge the templates with Values */}}
  3. {{- $_ := mustMergeOverwrite .Values (include "immich.configuration" $ | fromYaml) -}}
  4. {{- $_ := mustMergeOverwrite .Values (include "immich.server.workload" $ | fromYaml) -}}
  5. {{- $_ := mustMergeOverwrite .Values (include "immich.microservices.workload" $ | fromYaml) -}}
  6. {{- if .Values.immichConfig.enableML -}}
  7. {{- $_ := mustMergeOverwrite .Values (include "immich.machinelearning.workload" $ | fromYaml) -}}
  8. {{- end -}}
  9. {{- $_ := mustMergeOverwrite .Values (include "immich.persistence" $ | fromYaml) -}}
  10. {{- $_ := mustMergeOverwrite .Values (include "immich.service" $ | fromYaml) -}}
  11. {{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
  12. {{- $_ := mustMergeOverwrite .Values (include "redis.workload" $ | fromYaml) -}}
  13. {{/* Create the configmap for portal manually*/}}
  14. {{- include "immich.portal" $ -}}
  15. {{- include "ix.v1.common.loader.apply" . -}}