This repository was archived by the owner on Sep 19, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-54
lines changed
Expand file tree Collapse file tree 3 files changed +17
-54
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export KUBEFLOW_NAMESPACE=$(your_namespace)
5555After the cluster is up, the PyTorch Operator CRD should be created on the cluster.
5656
5757``` bash
58- kubectl create -f ./examples /crd/crd-v1 .yaml
58+ kubectl create -f ./manifests /crd.yaml
5959```
6060
6161### Run Operator
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,12 +3,21 @@ kind: CustomResourceDefinition
33metadata :
44 name : pytorchjobs.kubeflow.org
55spec :
6+ additionalPrinterColumns :
7+ - JSONPath : .status.conditions[-1:].type
8+ name : State
9+ type : string
10+ - JSONPath : .metadata.creationTimestamp
11+ name : Age
12+ type : date
613 group : kubeflow.org
714 names :
815 kind : PyTorchJob
916 plural : pytorchjobs
1017 singular : pytorchjob
1118 scope : Namespaced
19+ subresources :
20+ status : {}
1221 validation :
1322 openAPIV3Schema :
1423 properties :
2736 replicas :
2837 minimum : 1
2938 type : integer
30- version : v1beta1
39+ versions :
40+ - name : v1
41+ served : true
42+ storage : true
43+ - name : v1beta2
44+ served : true
45+ storage : false
You can’t perform that action at this time.
0 commit comments