python/kubernetes/docs/V1JobStatus.md
2021-10-25 14:41:04 -07:00

1.4 KiB

V1JobStatus

JobStatus represents the current state of a Job.

Properties

Name Type Description Notes
active int The number of actively running pods. [optional]
completion_time datetime Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. The completion time is only set when the job finishes successfully. [optional]
conditions **list[V1JobCondition]** The latest available observations of an object's current state. When a job fails, one of the conditions will have type == "Failed". More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ [optional]
failed int The number of pods which reached phase Failed. [optional]
start_time datetime Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. [optional]
succeeded int The number of pods which reached phase Succeeded. [optional]

[Back to Model list] [Back to API list] [Back to README]