StatefulSetStatusPatch

data class StatefulSetStatusPatch(val availableReplicas: Int? = null, val collisionCount: Int? = null, val conditions: List<StatefulSetConditionPatch>? = null, val currentReplicas: Int? = null, val currentRevision: String? = null, val observedGeneration: Int? = null, val readyReplicas: Int? = null, val replicas: Int? = null, val updateRevision: String? = null, val updatedReplicas: Int? = null)

StatefulSetStatus represents the current state of a StatefulSet.

Constructors

Link copied to clipboard
constructor(availableReplicas: Int? = null, collisionCount: Int? = null, conditions: List<StatefulSetConditionPatch>? = null, currentReplicas: Int? = null, currentRevision: String? = null, observedGeneration: Int? = null, readyReplicas: Int? = null, replicas: Int? = null, updateRevision: String? = null, updatedReplicas: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val availableReplicas: Int? = null

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

Link copied to clipboard
val collisionCount: Int? = null

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.

Link copied to clipboard

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

Link copied to clipboard
val currentReplicas: Int? = null

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

Link copied to clipboard
val currentRevision: String? = null

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

Link copied to clipboard
val observedGeneration: Int? = null

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.

Link copied to clipboard
val readyReplicas: Int? = null

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

Link copied to clipboard
val replicas: Int? = null

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

Link copied to clipboard
val updatedReplicas: Int? = null

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

Link copied to clipboard
val updateRevision: String? = null

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