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.
47 lines
1.1 KiB
47 lines
1.1 KiB
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: tfjobs.kubeflow.org
|
|
spec:
|
|
additionalPrinterColumns:
|
|
- JSONPath: .status.conditions[-1:].type
|
|
name: State
|
|
type: string
|
|
- JSONPath: .metadata.creationTimestamp
|
|
name: Age
|
|
type: date
|
|
group: kubeflow.org
|
|
names:
|
|
kind: TFJob
|
|
plural: tfjobs
|
|
singular: tfjob
|
|
scope: Namespaced
|
|
subresources:
|
|
status: {}
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
spec:
|
|
properties:
|
|
tfReplicaSpecs:
|
|
properties:
|
|
Chief:
|
|
properties:
|
|
replicas:
|
|
maximum: 1
|
|
minimum: 1
|
|
type: integer
|
|
PS:
|
|
properties:
|
|
replicas:
|
|
minimum: 1
|
|
type: integer
|
|
Worker:
|
|
properties:
|
|
replicas:
|
|
minimum: 1
|
|
type: integer
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
|