UNPKG

@jkcfg/kubernetes

Version:
42 lines 1.71 kB
{ "description": "JobStatus represents the current state of a Job.", "properties": { "active": { "description": "The number of actively running pods.", "type": "integer", "format": "int32" }, "completionTime": { "description": "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.", "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "conditions": { "description": "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": [ "array", "null" ], "items": { "$ref": "_definitions.json#/definitions/io.k8s.api.batch.v1.JobCondition" }, "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "failed": { "description": "The number of pods which reached phase Failed.", "type": "integer", "format": "int32" }, "startTime": { "description": "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.", "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "succeeded": { "description": "The number of pods which reached phase Succeeded.", "type": "integer", "format": "int32" } }, "$schema": "http://json-schema.org/schema#", "type": "object" }