@jkcfg/kubernetes
Version:
jk Kubernetes library
39 lines • 957 B
JSON
{
"description": "Information about the condition of a component.",
"required": [
"type",
"status"
],
"properties": {
"error": {
"description": "Condition error code for a component. For example, a health check error code.",
"type": [
"string",
"null"
]
},
"message": {
"description": "Message about the condition for a component. For example, information about a health check.",
"type": [
"string",
"null"
]
},
"status": {
"description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
"type": [
"string",
"null"
]
},
"type": {
"description": "Type of condition for a component. Valid value: \"Healthy\"",
"type": [
"string",
"null"
]
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}