DeploymentStatusArgs

data class DeploymentStatusArgs(val availableReplicas: Output<Int>? = null, val collisionCount: Output<Int>? = null, val conditions: Output<List<DeploymentConditionArgs>>? = null, val observedGeneration: Output<Int>? = null, val readyReplicas: Output<Int>? = null, val replicas: Output<Int>? = null, val unavailableReplicas: Output<Int>? = null, val updatedReplicas: Output<Int>? = null) : ConvertibleToJava<DeploymentStatusArgs>

DeploymentStatus is the most recently observed status of the Deployment.

Constructors

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

Properties

Link copied to clipboard
val availableReplicas: Output<Int>? = null

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

Link copied to clipboard
val collisionCount: Output<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: Output<Int>? = null

The generation observed by the deployment controller.

Link copied to clipboard
val readyReplicas: Output<Int>? = null

Total number of ready pods targeted by this deployment.

Link copied to clipboard
val replicas: Output<Int>? = null

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

Link copied to clipboard
val unavailableReplicas: Output<Int>? = null

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: Output<Int>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): DeploymentStatusArgs