struct

Kubernetes::ReplicationControllerStatus

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

ReplicationControllerStatus represents the current status of a replication controller.

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

The number of available replicas (ready for at least minReadySeconds) for this replication controller.

Source
available_replicas=(available_replicas : Int32 | Nil)

The number of available replicas (ready for at least minReadySeconds) for this replication controller.

Source
conditions

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

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

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

Source
fully_labeled_replicas

The number of pods that have labels matching the labels of the pod template of the replication controller.

Source
fully_labeled_replicas=(fully_labeled_replicas : Int32 | Nil)

The number of pods that have labels matching the labels of the pod template of the replication controller.

Source
observed_generation

ObservedGeneration reflects the generation of the most recently observed replication controller.

Source
observed_generation=(observed_generation : Int64 | Nil)

ObservedGeneration reflects the generation of the most recently observed replication controller.

Source
ready_replicas

The number of ready replicas for this replication controller.

Source
ready_replicas=(ready_replicas : Int32 | Nil)

The number of ready replicas for this replication controller.

Source
replicas

Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

Source
replicas=(replicas : Int32 | Nil)

Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

Source

Macros

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

Helper macro for defining fields with automatic camelCase conversion

Source