UNPKG

@jkcfg/kubernetes

Version:
47 lines 1.48 kB
{ "description": "PodCondition contains details for the current condition of this pod.", "required": [ "type", "status" ], "properties": { "lastProbeTime": { "description": "Last time we probed the condition.", "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "lastTransitionTime": { "description": "Last time the condition transitioned from one status to another.", "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "message": { "description": "Human-readable message indicating details about last transition.", "type": [ "string", "null" ] }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": [ "string", "null" ] }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": [ "string", "null" ] }, "type": { "description": "Type is the type of the condition. Currently only Ready. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": [ "string", "null" ] } }, "$schema": "http://json-schema.org/schema#", "type": "object" }