@jkcfg/kubernetes
Version:
jk Kubernetes library
53 lines • 1.75 kB
JSON
{
"description": "DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.",
"required": [
"name",
"rollbackTo"
],
"x-kubernetes-group-version-kind": [
{
"kind": "DeploymentRollback",
"version": "v1beta1",
"group": "extensions"
}
],
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"kind": {
"type": [
"string",
"null"
],
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
},
"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."
},
"apiVersion": {
"type": [
"string",
"null"
],
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources"
},
"rollbackTo": {
"description": "The config of this deployment rollback.",
"$ref": "_definitions.json#/definitions/io.k8s.api.extensions.v1beta1.RollbackConfig"
}
}
}