case class DeploymentStatus(availableReplicas: Option[Int] = None, collisionCount: Option[Int] = None, conditions: Option[Seq[DeploymentCondition]] = None, observedGeneration: Option[Long] = None, readyReplicas: Option[Int] = None, replicas: Option[Int] = None, unavailableReplicas: Option[Int] = None, updatedReplicas: Option[Int] = None) 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.
- Alphabetic
- By Inheritance
- DeploymentStatus
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DeploymentStatus(availableReplicas: Option[Int] = None, collisionCount: Option[Int] = None, conditions: Option[Seq[DeploymentCondition]] = None, observedGeneration: Option[Long] = None, readyReplicas: Option[Int] = None, replicas: Option[Int] = None, unavailableReplicas: Option[Int] = None, updatedReplicas: Option[Int] = None)
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val availableReplicas: Option[Int]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- val collisionCount: Option[Int]
- val conditions: Option[Seq[DeploymentCondition]]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val observedGeneration: Option[Long]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val readyReplicas: Option[Int]
- val replicas: Option[Int]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val unavailableReplicas: Option[Int]
- val updatedReplicas: Option[Int]
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated