DeploymentStatusPatch

data class DeploymentStatusPatch(val availableReplicas: Int? = null, val collisionCount: Int? = null, val conditions: List<DeploymentConditionPatch>? = null, val observedGeneration: Int? = null, val readyReplicas: Int? = null, val replicas: Int? = null, val unavailableReplicas: Int? = null, val updatedReplicas: Int? = null)

DeploymentStatus is the most recently observed status of the Deployment.

Constructors

Link copied to clipboard
constructor(availableReplicas: Int? = null, collisionCount: Int? = null, conditions: List<DeploymentConditionPatch>? = null, observedGeneration: Int? = null, readyReplicas: Int? = null, replicas: Int? = null, unavailableReplicas: Int? = null, updatedReplicas: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val availableReplicas: Int? = null

Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

Link copied to clipboard
val collisionCount: Int? = null

Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.

Link copied to clipboard

Represents the latest available observations of a deployment's current state.

Link copied to clipboard
val observedGeneration: Int? = null

The generation observed by the deployment controller.

Link copied to clipboard
val readyReplicas: Int? = null

Total number of ready pods targeted by this deployment.

Link copied to clipboard
val replicas: Int? = null

Total number of non-terminated pods targeted by this deployment (their labels match the selector).

Link copied to clipboard

Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.

Link copied to clipboard
val updatedReplicas: Int? = null

Total number of non-terminated pods targeted by this deployment that have the desired template spec.