From cf3fd8eb0c4b9aa51747adc1d24ea3a8bd742c14 Mon Sep 17 00:00:00 2001 From: Louis Murray Date: Thu, 31 May 2018 18:46:11 -0400 Subject: [PATCH] changes to reflect minio rework --- charts/argo/templates/workflow-controller-config-map.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/argo/templates/workflow-controller-config-map.yaml b/charts/argo/templates/workflow-controller-config-map.yaml index e0294338..081719f4 100644 --- a/charts/argo/templates/workflow-controller-config-map.yaml +++ b/charts/argo/templates/workflow-controller-config-map.yaml @@ -6,7 +6,7 @@ metadata: chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} - namespace: {{ .Release.namespace }} + namespace: {{ .Release.Namespace }} data: config: | {{- if .Values.controller.useReleaseAsInstanceID }} @@ -15,7 +15,7 @@ data: instanceID: {{ .Values.controller.instanceID }} {{- end }} artifactRepository: - {{- if or .Values.installMinio .Values.useDefaultArtifactRepo }} + {{- if or .Values.minio.install .Values.useDefaultArtifactRepo }} s3: {{- if .Values.useStaticCredentials }} accessKeySecret: @@ -25,7 +25,7 @@ data: key: {{ .Values.artifactRepository.s3.secretKeySecret.key }} name: {{ .Values.artifactRepository.s3.secretKeySecret.name | default (printf "%s-%s" .Release.Name "minio-user") }} {{- end }} - bucket: {{ .Values.artifactRepository.s3.bucket | default .Values.minioBucketName }} + bucket: {{ .Values.artifactRepository.s3.bucket | default .Values.minio.defaultBucket.name }} endpoint: {{ .Values.artifactRepository.s3.endpoint | default (printf "%s-%s" .Release.Name "minio-svc:9000") }} insecure: {{ .Values.artifactRepository.s3.insecure }} {{- end}}