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.
31 lines
750 B
31 lines
750 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: centraldashboard
|
|
name: centraldashboard
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: centraldashboard
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: centraldashboard
|
|
spec:
|
|
containers:
|
|
- image: gcr.io/kubeflow-images-public/centraldashboard
|
|
imagePullPolicy: IfNotPresent
|
|
name: centraldashboard
|
|
ports:
|
|
- containerPort: 8082
|
|
protocol: TCP
|
|
env:
|
|
- name: USERID_HEADER
|
|
value: $(userid-header)
|
|
- name: USERID_PREFIX
|
|
value: $(userid-prefix)
|
|
- name: PROFILES_KFAM_SERVICE_HOST
|
|
value: profiles-kfam.kubeflow
|
|
serviceAccountName: centraldashboard
|
|
|