Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# based on https://github.com/kubeflow/manifests/blob/master/apps/pipeline/upstream/third-party/argo/base/workflow-controller-configmap-patch.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: workflow-controller-configmap
namespace: kubeflow
data:
# SeaweedFS configuration for V1 pipelines with namespace isolation
# SeaweedFS is exposed through minio-service for backward compatibility
artifactRepository: |
archiveLogs: true
s3:
endpoint: minio-service.kubeflow:9000
bucket: mlpipeline
keyFormat: private-artifacts/{{workflow.namespace}}/{{workflow.name}}/{{workflow.creationTimestamp.Y}}/{{workflow.creationTimestamp.m}}/{{workflow.creationTimestamp.d}}/{{pod.name}}
insecure: true
accessKeySecret:
name: mlpipeline-minio-artifact
key: accesskey
secretKeySecret:
name: mlpipeline-minio-artifact
key: secretkey
executor: |
imagePullPolicy: IfNotPresent
1 change: 1 addition & 0 deletions experimental/seaweedfs/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ configMapGenerator:
patches:
- path: minio-service-patch.yaml
- path: pipeline-profile-controller/deployment.yaml
- path: argo-workflow-controller/workflow-controller-configmap-patch.yaml
- patch: |-
apiVersion: apps/v1
kind: Deployment
Expand Down
Loading