Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Add S3 Override Env Vars for DSP API Server #691

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
28 changes: 28 additions & 0 deletions data-science-pipelines/base/deployments/ds-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,34 @@ spec:
value: ds-pipeline-visualizationserver
- name: ML_PIPELINE_VISUALIZATIONSERVER_SERVICE_PORT
value: "8888"
- name: OBJECTSTORECONFIG_BUCKETNAME
value: "$(ARTIFACT_BUCKET)"
- name: OBJECTSTORECONFIG_ACCESSKEY
valueFrom:
secretKeyRef:
key: accesskey
name: $(artifact_secret_name)
- name: OBJECTSTORECONFIG_SECRETACCESSKEY
valueFrom:
secretKeyRef:
key: secretkey
name: $(artifact_secret_name)
- name: OBJECTSTORECONFIG_SECURE
valueFrom:
secretKeyRef:
key: secure
name: $(artifact_secret_name)
- name: MINIO_SERVICE_SERVICE_HOST
valueFrom:
secretKeyRef:
key: host
name: $(artifact_secret_name)
- name: MINIO_SERVICE_SERVICE_PORT
valueFrom:
secretKeyRef:
key: port
name: $(artifact_secret_name)

image: api-server
imagePullPolicy: Always
name: ds-pipeline-api-server
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ metadata:
application-crd-id: data-science-pipelines
name: mlpipeline-minio-artifact
stringData:
host: minio-service
port: "9000"
secure: "false"
accesskey: minio # override this
secretkey: minio123 # override this