mirror of
https://github.com/truenas/charts.git
synced 2024-04-21 15:21:45 +00:00
* initial commit * add some todo * extend config * remove typesense url * add microservices * add proxy and typesense * ML * fix configmap * fixup config * change range * one more * add some inits * ts dont need to wait for server * wait web * add redis * fix redis * wrong space * type * add redis service * conditional services * fix redis... * add caps * fix capabilities * fix service * add tests * fix conditional pods * fix upgrade_strategy * fix config * lint * whops * update strategy * make robust * cleaner * fix regex * Take a copy of the resources before we start doing modifications * regen commontgz * bump versions * add pullPolicy * regen common * bump version * bump * bump helm * regen common * Update library/ix-dev/community/immich/values.yaml * bump * update resources validation
24 lines
1.3 KiB
YAML
24 lines
1.3 KiB
YAML
{{- include "ix.v1.common.loader.init" . -}}
|
|
|
|
{{/* Merge the templates with Values */}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.configuration" $ | fromYaml) -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.server.workload" $ | fromYaml) -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.microservices.workload" $ | fromYaml) -}}
|
|
{{- if .Values.immichConfig.enableML -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.machinelearning.workload" $ | fromYaml) -}}
|
|
{{- end -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.web.workload" $ | fromYaml) -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.proxy.workload" $ | fromYaml) -}}
|
|
{{- if .Values.immichConfig.enableTypesense -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.typesense.workload" $ | fromYaml) -}}
|
|
{{- end -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.persistence" $ | fromYaml) -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "immich.service" $ | fromYaml) -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
|
|
{{- $_ := mustMergeOverwrite .Values (include "redis.workload" $ | fromYaml) -}}
|
|
|
|
{{/* Create the configmap for portal manually*/}}
|
|
{{- include "immich.portal" $ -}}
|
|
|
|
{{- include "ix.v1.common.loader.apply" . -}}
|