struct

Kubernetes::StatefulSetStatus

Inherits YAML::Serializable < JSON::Serializable < Kubernetes::Serializable < Struct < Value < Object

StatefulSetStatus represents the current state of a StatefulSet.

Constructors

new(pull : ::JSON::PullParser)
new(*, __pull_for_json_serializable pull : ::JSON::PullParser)
new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)

Instance methods

available_replicas

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

Source
available_replicas=(available_replicas : Int32 | Nil)

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

Source
collision_count

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.

Source
collision_count=(collision_count : Int32 | Nil)

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.

Source
conditions

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

Source
conditions=(conditions : Array(StatefulSetCondition) | Nil)

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

Source
current_replicas

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

Source
current_replicas=(current_replicas : Int32 | Nil)

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

Source
current_revision

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

Source
current_revision=(current_revision : String | Nil)

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

Source
observed_generation

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.

Source
observed_generation=(observed_generation : Int64 | Nil)

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.

Source
ready_replicas

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

Source
ready_replicas=(ready_replicas : Int32 | Nil)

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

Source
replicas

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

Source
replicas=(replicas : Int32 | Nil)

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

Source
update_revision

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

Source
update_revision=(update_revision : String | Nil)

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

Source
updated_replicas

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

Source
updated_replicas=(updated_replicas : Int32 | Nil)

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

Source

Macros

field(name, type = nil, **options, &block)

Helper macro for defining fields with automatic camelCase conversion

Source