case class ReplicaSetStatus(availableReplicas: Optional[Int] = Optional.Absent, conditions: Optional[Vector[ReplicaSetCondition]] = Optional.Absent, fullyLabeledReplicas: Optional[Int] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Int) extends Product with Serializable

ReplicaSetStatus represents the current status of a ReplicaSet.

availableReplicas

The number of available replicas (ready for at least minReadySeconds) for this replica set.

conditions

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

fullyLabeledReplicas

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

observedGeneration

ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

readyReplicas

readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.

replicas

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

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReplicaSetStatus
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReplicaSetStatus(availableReplicas: Optional[Int] = Optional.Absent, conditions: Optional[Vector[ReplicaSetCondition]] = Optional.Absent, fullyLabeledReplicas: Optional[Int] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, readyReplicas: Optional[Int] = Optional.Absent, replicas: Int)

    availableReplicas

    The number of available replicas (ready for at least minReadySeconds) for this replica set.

    conditions

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

    fullyLabeledReplicas

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

    observedGeneration

    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

    readyReplicas

    readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.

    replicas

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

Value Members

  1. val availableReplicas: Optional[Int]
  2. val conditions: Optional[Vector[ReplicaSetCondition]]
  3. val fullyLabeledReplicas: Optional[Int]
  4. def getAvailableReplicas: IO[K8sFailure, Int]

    The number of available replicas (ready for at least minReadySeconds) for this replica set.

    The number of available replicas (ready for at least minReadySeconds) for this replica set.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  5. def getConditions: IO[K8sFailure, Vector[ReplicaSetCondition]]

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

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

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  6. def getFullyLabeledReplicas: IO[K8sFailure, Int]

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

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

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  7. def getObservedGeneration: IO[K8sFailure, Long]

    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

    ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  8. def getReadyReplicas: IO[K8sFailure, Int]

    readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.

    readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  9. def getReplicas: IO[K8sFailure, Int]

    Replicas is the most recently oberved number of replicas.

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

    This effect always succeeds, it is safe to use the field replicas directly.

  10. val observedGeneration: Optional[Long]
  11. val readyReplicas: Optional[Int]
  12. val replicas: Int