@jkcfg/kubernetes
Version:
jk Kubernetes library
32 lines • 800 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"name",
"rollbackTo"
],
"type": "object",
"description": "DeploymentRollback stores the information required to rollback a deployment.",
"properties": {
"updatedAnnotations": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"type": "object",
"description": "The annotations to be updated to a deployment"
},
"name": {
"type": [
"string",
"null"
],
"description": "Required: This must match the Name of a deployment."
},
"rollbackTo": {
"description": "The config of this deployment rollback.",
"$ref": "_definitions.json#/definitions/v1beta1.RollbackConfig"
}
}
}