12345678910111213141516171819202122232425262728293031 |
- apiVersion: "kubeflow.org/v1alpha2"
- kind: "TFJob"
- metadata:
- name: "example-job"
- spec:
- replicaSpecs:
- - replicas: 1
- tfReplicaType: MASTER
- template:
- spec:
- containers:
- - image: gcr.io/tf-on-k8s-dogfood/tf_sample:dc944ff
- name: tensorflow
- restartPolicy: OnFailure
- - replicas: 1
- tfReplicaType: WORKER
- template:
- spec:
- containers:
- - image: gcr.io/tf-on-k8s-dogfood/tf_sample:dc944ff
- name: tensorflow
- restartPolicy: OnFailure
- - replicas: 2
- tfReplicaType: PS
- template:
- spec:
- containers:
- - image: gcr.io/tf-on-k8s-dogfood/tf_sample:dc944ff
- name: tensorflow
- restartPolicy: OnFailure
|