common.yaml 800 B

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