common.yaml 880 B

1234567891011121314151617
  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. {{- if .Values.immichConfig.enableML -}}
  6. {{- $_ := mustMergeOverwrite .Values (include "immich.machinelearning.workload" $ | fromYaml) -}}
  7. {{- end -}}
  8. {{- $_ := mustMergeOverwrite .Values (include "immich.persistence" $ | fromYaml) -}}
  9. {{- $_ := mustMergeOverwrite .Values (include "immich.service" $ | fromYaml) -}}
  10. {{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
  11. {{- $_ := mustMergeOverwrite .Values (include "redis.workload" $ | fromYaml) -}}
  12. {{/* Create the configmap for portal manually*/}}
  13. {{- include "immich.portal" $ -}}
  14. {{- include "ix.v1.common.loader.apply" . -}}