common.yaml 1.3 KB

1234567891011121314151617181920212223
  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.web.workload" $ | fromYaml) -}}
  10. {{- $_ := mustMergeOverwrite .Values (include "immich.proxy.workload" $ | fromYaml) -}}
  11. {{- if .Values.immichConfig.enableTypesense -}}
  12. {{- $_ := mustMergeOverwrite .Values (include "immich.typesense.workload" $ | fromYaml) -}}
  13. {{- end -}}
  14. {{- $_ := mustMergeOverwrite .Values (include "immich.persistence" $ | fromYaml) -}}
  15. {{- $_ := mustMergeOverwrite .Values (include "immich.service" $ | fromYaml) -}}
  16. {{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
  17. {{- $_ := mustMergeOverwrite .Values (include "redis.workload" $ | fromYaml) -}}
  18. {{/* Create the configmap for portal manually*/}}
  19. {{- include "immich.portal" $ -}}
  20. {{- include "ix.v1.common.loader.apply" . -}}