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.

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. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val availableReplicas: Optional[Int]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. val collisionCount: Optional[Int]
  8. val conditions: Optional[Vector[DeploymentCondition]]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. 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.

  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. 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.

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

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

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

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

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

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

  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. val observedGeneration: Optional[Long]
  24. val readyReplicas: Optional[Int]
  25. val replicas: Optional[Int]
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. val unavailableReplicas: Optional[Int]
  28. val updatedReplicas: Optional[Int]
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped