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.
20 lines
464 B
20 lines
464 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ml-pipeline-ui
|
|
spec:
|
|
template:
|
|
spec:
|
|
volumes:
|
|
- name: gcp-sa-token
|
|
secret:
|
|
secretName: user-gcp-sa
|
|
containers:
|
|
- name: ml-pipeline-ui
|
|
env:
|
|
- name: GOOGLE_APPLICATION_CREDENTIALS
|
|
value: /etc/credentials/user-gcp-sa.json
|
|
volumeMounts:
|
|
- name: gcp-sa-token
|
|
mountPath: "/etc/credentials"
|
|
readOnly: true
|
|
|