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
771 B
32 lines
771 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: pytorch-operator
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
name: pytorch-operator
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: pytorch-operator
|
|
spec:
|
|
containers:
|
|
- command:
|
|
- /pytorch-operator.v1
|
|
- --alsologtostderr
|
|
- -v=1
|
|
- --monitoring-port=8443
|
|
env:
|
|
- name: MY_POD_NAMESPACE
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.namespace
|
|
- name: MY_POD_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.name
|
|
image: gcr.io/kubeflow-images-public/pytorch-operator:v0.6.0-18-g5e36a57
|
|
name: pytorch-operator
|
|
serviceAccountName: pytorch-operator
|
|
|