common.yaml 817 B

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