common.yaml 820 B

123456789101112131415161718
  1. {{- include "ix.v1.common.loader.init" . -}}
  2. {{- include "minio.migration" $ -}}
  3. {{/* Merge the templates with Values */}}
  4. {{- $_ := mustMergeOverwrite .Values (include "minio.service" $ | fromYaml) -}}
  5. {{- $_ := mustMergeOverwrite .Values (include "minio.workload" $ | fromYaml) -}}
  6. {{- $_ := mustMergeOverwrite .Values (include "minio.persistence" $ | fromYaml) -}}
  7. {{- $_ := mustMergeOverwrite .Values (include "minio.configuration" $ | fromYaml) -}}
  8. {{- if .Values.minioStorage.logSearchApi -}}
  9. {{- $_ := mustMergeOverwrite .Values (include "postgres.workload" $ | fromYaml) -}}
  10. {{- $_ := mustMergeOverwrite .Values (include "logsearchapi.workload" $ | fromYaml) -}}
  11. {{- end -}}
  12. {{/* Create the configmap for portal manually*/}}
  13. {{- include "minio.portal" $ -}}
  14. {{- include "ix.v1.common.loader.apply" . -}}