common.yaml 623 B

123456789101112131415
  1. {{- include "ix.v1.common.loader.init" . -}}
  2. {{/* Merge the templates with Values */}}
  3. {{- $_ := mustMergeOverwrite .Values (include "minio.configuration" $ | fromYaml) -}}
  4. {{- $_ := mustMergeOverwrite .Values (include "minio.workload" $ | fromYaml) -}}
  5. {{- if .Values.minioLogging.logsearch.enabled -}}
  6. {{- $_ := mustMergeOverwrite .Values (include "logsearch.workload" $ | fromYaml) -}}
  7. {{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
  8. {{- end -}}
  9. {{/* Create the configmap for portal manually*/}}
  10. {{- include "minio.portal" $ -}}
  11. {{- include "ix.v1.common.loader.apply" . -}}