OpenShift · Schema
DeploymentConfigStatus
Status of the DeploymentConfig.
CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS
Properties
| Name | Type | Description |
|---|---|---|
| latestVersion | integer | The version of the most recent deployment. |
| observedGeneration | integer | The most recent generation observed by the deployment controller. |
| replicas | integer | Total number of non-terminated pods targeted by this deployment. |
| updatedReplicas | integer | Total number of non-terminated pods that have the desired template spec. |
| availableReplicas | integer | Total number of available pods targeted by this deployment. |
| unavailableReplicas | integer | Total number of unavailable pods targeted by this deployment. |
| readyReplicas | integer | Total number of ready pods targeted by this deployment. |
| conditions | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DeploymentConfigStatus",
"type": "object",
"description": "Status of the DeploymentConfig.",
"properties": {
"latestVersion": {
"type": "integer",
"description": "The version of the most recent deployment."
},
"observedGeneration": {
"type": "integer",
"description": "The most recent generation observed by the deployment controller."
},
"replicas": {
"type": "integer",
"description": "Total number of non-terminated pods targeted by this deployment."
},
"updatedReplicas": {
"type": "integer",
"description": "Total number of non-terminated pods that have the desired template spec."
},
"availableReplicas": {
"type": "integer",
"description": "Total number of available pods targeted by this deployment."
},
"unavailableReplicas": {
"type": "integer",
"description": "Total number of unavailable pods targeted by this deployment."
},
"readyReplicas": {
"type": "integer",
"description": "Total number of ready pods targeted by this deployment."
},
"conditions": {
"type": "array"
}
}
}