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