Skip to content

Commit 9184216

Browse files
committed
initial
1 parent 99e187d commit 9184216

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

stable/pipelines-v2/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
appVersion: ">=2.5.0"
3-
version: 0.12.4
3+
version: 0.12.5
44
name: pipelines-v2
55
description: Kubeflow pipelines framework for machine learning
66
home: https://www.kubeflow.org/

stable/pipelines-v2/templates/argo/workflow-controller-configmap.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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" . }}

stable/pipelines-v2/templates/ml-pipeline/kfp-launcher/configmap.yaml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,19 @@ metadata:
66
labels:
77
{{ include "pipelines.commonLabels" . | indent 4 }}
88
data:
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 }}

stable/pipelines-v2/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: ""

0 commit comments

Comments
 (0)