case class StatefulSetStatus(availableReplicas: Int, collisionCount: Optional[Int] = Optional.Absent, conditions: Optional[Vector[StatefulSetCondition]] = Optional.Absent, currentReplicas: Optional[Int] = Optional.Absent, currentRevision: Optional[String] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Int, updateRevision: Optional[String] = Optional.Absent, updatedReplicas: Optional[Int] = Optional.Absent) extends Product with Serializable

StatefulSetStatus represents the current state of a StatefulSet.

availableReplicas

Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset. This is a beta field and enabled/disabled by StatefulSetMinReadySeconds feature gate.

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.

replicas

replicas is the number of Pods created by the StatefulSet controller.

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.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StatefulSetStatus
  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 StatefulSetStatus(availableReplicas: Int, collisionCount: Optional[Int] = Optional.Absent, conditions: Optional[Vector[StatefulSetCondition]] = Optional.Absent, currentReplicas: Optional[Int] = Optional.Absent, currentRevision: Optional[String] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Int, updateRevision: Optional[String] = Optional.Absent, updatedReplicas: Optional[Int] = Optional.Absent)

    availableReplicas

    Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset. This is a beta field and enabled/disabled by StatefulSetMinReadySeconds feature gate.

    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.

    replicas

    replicas is the number of Pods created by the StatefulSet controller.

    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

  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: 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[StatefulSetCondition]]
  9. val currentReplicas: Optional[Int]
  10. val currentRevision: Optional[String]
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def getAvailableReplicas: IO[K8sFailure, Int]

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

    Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset. This is a beta field and enabled/disabled by StatefulSetMinReadySeconds feature gate.

    This effect always succeeds, it is safe to use the field availableReplicas directly.

  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def getCollisionCount: IO[K8sFailure, Int]

    collisionCount is the count of hash collisions for the StatefulSet.

    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.

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

  15. def getConditions: IO[K8sFailure, Vector[StatefulSetCondition]]

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

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

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

  16. def getCurrentReplicas: IO[K8sFailure, Int]

    currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.

    currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.

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

  17. def getCurrentRevision: IO[K8sFailure, String]

    currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).

    currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).

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

  18. def getObservedGeneration: IO[K8sFailure, Long]

    observedGeneration is the most recent generation observed for this StatefulSet.

    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.

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

  19. def getReadyReplicas: IO[K8sFailure, Int]

    readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.

    readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.

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

  20. def getReplicas: IO[K8sFailure, Int]

    replicas is the number of Pods created by the StatefulSet controller.

    replicas is the number of Pods created by the StatefulSet controller.

    This effect always succeeds, it is safe to use the field replicas directly.

  21. def getUpdateRevision: IO[K8sFailure, String]

    updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)

    updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)

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

  22. def getUpdatedReplicas: IO[K8sFailure, Int]

    updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.

    updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.

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

  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. val observedGeneration: Optional[Long]
  28. val readyReplicas: Optional[Int]
  29. val replicas: Int
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. val updateRevision: Optional[String]
  32. val updatedReplicas: Optional[Int]
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  35. 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