You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
931 B
32 lines
931 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ml-pipeline
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ml-pipeline
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: OBJECTSTORECONFIG_SECURE
|
|
value: "true"
|
|
- name: OBJECTSTORECONFIG_BUCKETNAME
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: pipeline-install-config
|
|
key: bucketName
|
|
- name: OBJECTSTORECONFIG_HOST
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: pipeline-install-config
|
|
key: minioServiceHost
|
|
- name: OBJECTSTORECONFIG_REGION
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: pipeline-install-config
|
|
key: minioServiceRegion
|
|
- name: OBJECTSTORECONFIG_PORT
|
|
value: ""
|
|
name: ml-pipeline-api-server
|
|
|