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.
36 lines
815 B
36 lines
815 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ml-pipeline
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: ml-pipeline-api-server
|
|
env:
|
|
- name: HAS_DEFAULT_BUCKET
|
|
value: 'true'
|
|
- name: BUCKET_NAME
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: pipeline-install-config
|
|
key: bucketName
|
|
- name: PROJECT_ID
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: pipeline-install-config
|
|
key: gcsProjectId
|
|
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ml-pipeline-ui
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: ml-pipeline-ui
|
|
env:
|
|
- name: DISABLE_GKE_METADATA
|
|
value: 'false' |