From df6659eadf9085b8acf5acf563d53d39c9fa0c0a Mon Sep 17 00:00:00 2001 From: Yuan Gong Date: Wed, 25 Dec 2019 12:39:43 +0800 Subject: [PATCH] Fix GCP cloudsql manifest --- .../env/gcp/gcp-configurations-patch.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/manifests/kustomize/env/gcp/gcp-configurations-patch.yaml b/manifests/kustomize/env/gcp/gcp-configurations-patch.yaml index 24160bfd98e..14e52b6088b 100644 --- a/manifests/kustomize/env/gcp/gcp-configurations-patch.yaml +++ b/manifests/kustomize/env/gcp/gcp-configurations-patch.yaml @@ -28,3 +28,31 @@ spec: - name: CLOUD_SQL_INSTANCE_CONNECTION_NAME # E.g. project-id:us-central1:instance-name value: '' +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: workflow-controller-configmap +data: + config: | + { + namespace: $(NAMESPACE), + executorImage: gcr.io/ml-pipeline/argoexec:v2.3.0-license-compliance, + artifactRepository: + { + s3: { + bucket: '', # Replace this with the same bucket as OBJECTSTORECONFIG_BUCKETNAME. + keyPrefix: artifacts, + endpoint: minio-service.$(NAMESPACE):9000, + insecure: true, + accessKeySecret: { + name: mlpipeline-minio-artifact, + key: accesskey + }, + secretKeySecret: { + name: mlpipeline-minio-artifact, + key: secretkey + } + } + } + }