common.yaml 741 B

12345678910111213141516
  1. {{- include "ix.v1.common.loader.init" . -}}
  2. {{- include "n8n.validation" $ -}}
  3. {{/* Merge the templates with Values */}}
  4. {{- $_ := mustMergeOverwrite .Values (include "n8n.configuration" $ | fromYaml) -}}
  5. {{- $_ := mustMergeOverwrite .Values (include "n8n.service" $ | fromYaml) -}}
  6. {{- $_ := mustMergeOverwrite .Values (include "n8n.persistence" $ | fromYaml) -}}
  7. {{- $_ := mustMergeOverwrite .Values (include "n8n.workload" $ | fromYaml) -}}
  8. {{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
  9. {{- $_ := mustMergeOverwrite .Values (include "redis.workload" $ | fromYaml) -}}
  10. {{/* Create the configmap for portal manually*/}}
  11. {{- include "n8n.portal" $ -}}
  12. {{- include "ix.v1.common.loader.apply" . -}}