OBJECT

KubernetesKindReplicaSetStatus

Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status

link GraphQL Schema definition

  • type KubernetesKindReplicaSetStatus {
  • # The number of available replicas (ready for at least minReadySeconds) for this
  • # replica set.
  • availableReplicas: Int
  • # ReplicaSetCondition describes the state of a replica set at a certain point.
  • conditions: [KubernetesKindReplicaSetStatusConditions]
  • # The number of pods that have labels matching the labels of the pod template of
  • # the replicaset.
  • fullyLabeledReplicas: Int
  • # ObservedGeneration reflects the generation of the most recently observed
  • # ReplicaSet.
  • observedGeneration: Int
  • # The number of ready replicas for this replica set.
  • readyReplicas: Int
  • # Replicas is the most recently oberved number of replicas. More info:
  • # https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
  • replicas: Int
  • }