case class StatefulSetStatus(replicas: Int, availableReplicas: Option[Int] = None, collisionCount: Option[Int] = None, conditions: Option[Seq[StatefulSetCondition]] = None, currentReplicas: Option[Int] = None, currentRevision: Option[String] = None, observedGeneration: Option[Long] = None, readyReplicas: Option[Int] = None, updateRevision: Option[String] = None, updatedReplicas: Option[Int] = None) extends Product with Serializable
StatefulSetStatus represents the current state of a StatefulSet.
- replicas
replicas is the number of Pods created by the StatefulSet controller.
- availableReplicas
Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset
- collisionCount
collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
- conditions
Represents the latest available observations of a statefulset's current state.
- currentReplicas
currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
- currentRevision
currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).
- observedGeneration
observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.
- readyReplicas
readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.
- updateRevision
updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)
- updatedReplicas
updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
- Alphabetic
- By Inheritance
- StatefulSetStatus
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new StatefulSetStatus(replicas: Int, availableReplicas: Option[Int] = None, collisionCount: Option[Int] = None, conditions: Option[Seq[StatefulSetCondition]] = None, currentReplicas: Option[Int] = None, currentRevision: Option[String] = None, observedGeneration: Option[Long] = None, readyReplicas: Option[Int] = None, updateRevision: Option[String] = None, updatedReplicas: Option[Int] = None)
- replicas
replicas is the number of Pods created by the StatefulSet controller.
- availableReplicas
Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset
- collisionCount
collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
- conditions
Represents the latest available observations of a statefulset's current state.
- currentReplicas
currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
- currentRevision
currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).
- observedGeneration
observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.
- readyReplicas
readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.
- updateRevision
updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)
- updatedReplicas
updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
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[StatefulSetCondition]]
- val currentReplicas: Option[Int]
- val currentRevision: Option[String]
- 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: Int
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val updateRevision: Option[String]
- 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