Skip to content

Commit 205093e

Browse files
Merge pull request opendatahub-io#58 from gmfrasca/external-s3-service
feat(manifests): Add Additional S3 Env Var Overrides to API Server Deployment
2 parents 8458a79 + f731779 commit 205093e

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

manifests/opendatahub/base/deployments/ds-pipeline.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,34 @@ spec:
123123
value: ds-pipeline-visualizationserver
124124
- name: ML_PIPELINE_VISUALIZATIONSERVER_SERVICE_PORT
125125
value: "8888"
126+
- name: OBJECTSTORECONFIG_BUCKETNAME
127+
value: "$(ARTIFACT_BUCKET)"
128+
- name: OBJECTSTORECONFIG_ACCESSKEY
129+
valueFrom:
130+
secretKeyRef:
131+
key: accesskey
132+
name: $(artifact_secret_name)
133+
- name: OBJECTSTORECONFIG_SECRETACCESSKEY
134+
valueFrom:
135+
secretKeyRef:
136+
key: secretkey
137+
name: $(artifact_secret_name)
138+
- name: OBJECTSTORECONFIG_SECURE
139+
valueFrom:
140+
secretKeyRef:
141+
key: secure
142+
name: $(artifact_secret_name)
143+
- name: MINIO_SERVICE_SERVICE_HOST
144+
valueFrom:
145+
secretKeyRef:
146+
key: host
147+
name: $(artifact_secret_name)
148+
- name: MINIO_SERVICE_SERVICE_PORT
149+
valueFrom:
150+
secretKeyRef:
151+
key: port
152+
name: $(artifact_secret_name)
153+
126154
image: api-server
127155
imagePullPolicy: Always
128156
name: ds-pipeline-api-server

manifests/opendatahub/overlays/default-configs/secrets/mlpipeline-minio-artifact.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@ metadata:
55
application-crd-id: data-science-pipelines
66
name: mlpipeline-minio-artifact
77
stringData:
8+
host: minio-service
9+
port: "9000"
10+
secure: "false"
811
accesskey: minio # override this
912
secretkey: minio123 # override this

0 commit comments

Comments
 (0)