@jkcfg/kubernetes
Version:
jk Kubernetes library
18 lines • 600 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"description": "DeploymentStrategy describes how to replace existing pods with new ones.",
"properties": {
"rollingUpdate": {
"description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.",
"$ref": "_definitions.json#/definitions/v1beta1.RollingUpdateDeployment"
},
"type": {
"type": [
"string",
"null"
],
"description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate."
}
}
}