case class DeploymentStatus(availableReplicas: Optional[Int] = Optional.Absent, collisionCount: Optional[Int] = Optional.Absent, conditions: Optional[Vector[DeploymentCondition]] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Optional[Int] = Optional.Absent, unavailableReplicas: Optional[Int] = Optional.Absent, updatedReplicas: Optional[Int] = Optional.Absent) extends Product with Serializable

DeploymentStatus is the most recently observed status of the Deployment.

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

readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.

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.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DeploymentStatus
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DeploymentStatus(availableReplicas: Optional[Int] = Optional.Absent, collisionCount: Optional[Int] = Optional.Absent, conditions: Optional[Vector[DeploymentCondition]] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Optional[Int] = Optional.Absent, unavailableReplicas: Optional[Int] = Optional.Absent, updatedReplicas: Optional[Int] = Optional.Absent)

    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

    readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.

    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.

Value Members

  1. val availableReplicas: Optional[Int]
  2. val collisionCount: Optional[Int]
  3. val conditions: Optional[Vector[DeploymentCondition]]
  4. def getAvailableReplicas: IO[K8sFailure, Int]

    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.

  5. def getCollisionCount: IO[K8sFailure, Int]

    Count of hash collisions for the Deployment.

    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.

  6. def getConditions: IO[K8sFailure, Vector[DeploymentCondition]]

    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.

  7. def getObservedGeneration: IO[K8sFailure, Long]

    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.

  8. def getReadyReplicas: IO[K8sFailure, Int]

    readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.

    readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.

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

  9. 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.

  10. def getUnavailableReplicas: IO[K8sFailure, Int]

    Total number of unavailable pods targeted by this deployment.

    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.

  11. def getUpdatedReplicas: IO[K8sFailure, Int]

    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.

  12. val observedGeneration: Optional[Long]
  13. val readyReplicas: Optional[Int]
  14. val replicas: Optional[Int]
  15. val unavailableReplicas: Optional[Int]
  16. val updatedReplicas: Optional[Int]