DeploymentStatus

case
class DeploymentStatus(availableReplicas: Optional[Int], collisionCount: Optional[Int], conditions: Optional[Vector[DeploymentCondition]], observedGeneration: Optional[Long], readyReplicas: Optional[Int], replicas: Optional[Int], unavailableReplicas: Optional[Int], updatedReplicas: Optional[Int])

DeploymentStatus is the most recently observed status of the Deployment.

Value Params
availableReplicas

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

collisionCount

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.

conditions

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

observedGeneration

The generation observed by the deployment controller.

readyReplicas

Total number of ready pods targeted by this deployment.

replicas

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

unavailableReplicas

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.

updatedReplicas

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

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

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

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

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

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.

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.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

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

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

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

The generation observed by the deployment controller.

The generation observed by the deployment controller.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

Total number of ready pods targeted by this deployment.

Total number of ready pods targeted by this deployment.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

def getReplicas: IO[K8sFailure, Int]

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

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

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

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.

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.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

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

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

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product