Kazan v0.11.0 Kazan.Apis.Core.V1.ReplicationControllerStatus View Source

ReplicationControllerStatus represents the current status of a replication controller.

OpenAPI Definition: io.k8s.api.core.v1.ReplicationControllerStatus

Properties

  • available_replicas :: Integer

    • The number of available replicas (ready for at least minReadySeconds) for this replication controller.
  • conditions :: [ Kazan.Apis.Core.V1.ReplicationControllerCondition ]

    • Represents the latest available observations of a replication controller’s current state.
  • fully_labeled_replicas :: Integer

    • The number of pods that have labels matching the labels of the pod template of the replication controller.
  • observed_generation :: Integer

    • ObservedGeneration reflects the generation of the most recently observed replication controller.
  • ready_replicas :: Integer

    • The number of ready replicas for this replication controller.
  • replicas :: Integer

    • Replicas is the most recently oberved number of replicas. More info.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Kazan.Apis.Core.V1.ReplicationControllerStatus{
  available_replicas: integer(),
  conditions: [Kazan.Apis.Core.V1.ReplicationControllerCondition.t()],
  fully_labeled_replicas: integer(),
  observed_generation: integer(),
  ready_replicas: integer(),
  replicas: integer()
}