OpenShift · Schema

DeploymentStrategy

Describes how to perform a deployment.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
type string The deployment strategy type.
activeDeadlineSeconds integer Duration in seconds that the deployer pods may be active before the system retries the deployment.
View JSON Schema on GitHub

JSON Schema

openshift-rest-deployment-strategy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeploymentStrategy",
  "type": "object",
  "description": "Describes how to perform a deployment.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The deployment strategy type."
    },
    "activeDeadlineSeconds": {
      "type": "integer",
      "description": "Duration in seconds that the deployer pods may be active before the system retries the deployment."
    }
  }
}