Kazan v0.11.0 Kazan.Apis.Apps.V1beta2.StatefulSetStatus View Source

StatefulSetStatus represents the current state of a StatefulSet.

OpenAPI Definition: io.k8s.api.apps.v1beta2.StatefulSetStatus

Properties

  • collision_count :: Integer

    • 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 :: [ Kazan.Apis.Apps.V1beta2.StatefulSetCondition ]

    • Represents the latest available observations of a statefulset’s current state.
  • current_replicas :: Integer

    • currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
  • current_revision :: String

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

    • 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.
  • ready_replicas :: Integer

    • readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
  • replicas :: Integer

    • replicas is the number of Pods created by the StatefulSet controller.
  • update_revision :: String

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

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

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Kazan.Apis.Apps.V1beta2.StatefulSetStatus{
  collision_count: integer(),
  conditions: [Kazan.Apis.Apps.V1beta2.StatefulSetCondition.t()],
  current_replicas: integer(),
  current_revision: String.t(),
  observed_generation: integer(),
  ready_replicas: integer(),
  replicas: integer(),
  update_revision: String.t(),
  updated_replicas: integer()
}