common.yaml 894 B

12345678910111213141516171819
  1. {{- include "ix.v1.common.loader.init" . -}}
  2. {{- include "home-assistant.migration" $ -}}
  3. {{/* Merge the templates with Values */}}
  4. {{- $_ := mustMergeOverwrite .Values (include "home-assistant.workload" $ | fromYaml) -}}
  5. {{- $_ := mustMergeOverwrite .Values (include "home-assistant.service" $ | fromYaml) -}}
  6. {{- $_ := mustMergeOverwrite .Values (include "home-assistant.persistence" $ | fromYaml) -}}
  7. {{- $_ := mustMergeOverwrite .Values (include "home-assistant.configuration" $ | fromYaml) -}}
  8. {{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
  9. {{- if eq (include "home-assistant.is-migration" $) "true" }}
  10. {{- $_ := set .Values.workload.postgres.podSpec.initContainers.permissions "type" "init" -}}
  11. {{- end }}
  12. {{/* Create the configmap for portal manually*/}}
  13. {{- include "home-assistant.portal" $ -}}
  14. {{- include "ix.v1.common.loader.apply" . -}}