@jkcfg/kubernetes
Version:
jk Kubernetes library
47 lines • 1.25 kB
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"type",
"status"
],
"type": "object",
"description": "NodeCondition contains condition information for a node.",
"properties": {
"status": {
"type": [
"string",
"null"
],
"description": "Status of the condition, one of True, False, Unknown."
},
"lastTransitionTime": {
"description": "Last time the condition transit from one status to another.",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"reason": {
"type": [
"string",
"null"
],
"description": "(brief) reason for the condition's last transition."
},
"lastHeartbeatTime": {
"description": "Last time we got an update on a given condition.",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"message": {
"type": [
"string",
"null"
],
"description": "Human readable message indicating details about last transition."
},
"type": {
"type": [
"string",
"null"
],
"description": "Type of node condition."
}
}
}