File tree Expand file tree Collapse file tree 4 files changed +20
-3
lines changed
Expand file tree Collapse file tree 4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22appVersion : " >=2.5.0"
3- version : 0.12.4
3+ version : 0.12.5
44name : pipelines-v2
55description : Kubeflow pipelines framework for machine learning
66home : https://www.kubeflow.org/
Original file line number Diff line number Diff line change @@ -13,11 +13,14 @@ data:
1313 path: /metrics
1414 port: 9090
1515 ignoreErrors: false
16+
17+ # https://github.com/argoproj/argo-workflows/blob/v3.7.7/docs/workflow-controller-configmap.yaml
1618 artifactRepository : |
1719 archiveLogs: true
1820 s3:
1921 endpoint: {{ .Values.storageMode.minio.serviceHost }}:{{ .Values.storageMode.minio.servicePort }}
2022 bucket: {{ .Values.storageMode.minio.defaultBucket }}
23+ keyPrefix: {{ .Values.storageMode.minio.keyPrefix }}
2124 insecure: {{ .Values.storageMode.minio.insecure }}
2225 accessKeySecret:
2326 name: {{ include "pipelines.minioStorageSecretName" . }}
Original file line number Diff line number Diff line change @@ -6,5 +6,19 @@ metadata:
66 labels :
77{{ include "pipelines.commonLabels" . | indent 4 }}
88data :
9- defaultPipelineRoot : " {{ .Values.configurations.kfpDefaultPipelineRoot }}"
9+ # https://www.kubeflow.org/docs/components/pipelines/operator-guides/configure-object-store/#kfp-launcher-object-store-configuration
10+ defaultPipelineRoot : " {{ .Values.configurations.kfpDefaultPipelineRoot }}"
11+
12+ {{- if .Values.configurations.providers }}
13+ # providers: |-
14+ # s3:
15+ # default:
16+ # endpoint: s3.amazonaws.com
17+ # disableSSL: false
18+ # region: us-east-2
19+ # forcePathStyle: true
20+ # credentials:
21+ # fromEnv: true
22+ providers : {{ .Values.configurations.providers }}
23+ {{- end -}}
1024{{- end }}
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ storageMode:
179179 accessKey : console
180180 secretKey : console123
181181 insecure : " true"
182-
182+ keyPrefix : mlpipeline
183183
184184 # uncomment to use an existing secret
185185 # existingSecretName: ""
You can’t perform that action at this time.
0 commit comments