@jkcfg/kubernetes
Version:
jk Kubernetes library
43 lines • 1.15 kB
JSON
{
"description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
"required": [
"type",
"status"
],
"properties": {
"lastTransitionTime": {
"description": "lastTransitionTime is the last time the condition transitioned from one status to another",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"message": {
"description": "message is a human-readable explanation containing details about the transition",
"type": [
"string",
"null"
]
},
"reason": {
"description": "reason is the reason for the condition's last transition.",
"type": [
"string",
"null"
]
},
"status": {
"description": "status is the status of the condition (True, False, Unknown)",
"type": [
"string",
"null"
]
},
"type": {
"description": "type describes the current condition",
"type": [
"string",
"null"
]
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}