case class DaemonSetStatus(collisionCount: Optional[Int] = Optional.Absent, conditions: Optional[Vector[DaemonSetCondition]] = Optional.Absent, currentNumberScheduled: Int, desiredNumberScheduled: Int, numberAvailable: Optional[Int] = Optional.Absent, numberMisscheduled: Int, numberReady: Int, numberUnavailable: Optional[Int] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, updatedNumberScheduled: Optional[Int] = Optional.Absent) extends Product with Serializable

DaemonSetStatus represents the current status of a daemon set.

collisionCount

Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

conditions

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

currentNumberScheduled

The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

desiredNumberScheduled

The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

numberAvailable

The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

numberMisscheduled

The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

numberReady

numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.

numberUnavailable

The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

observedGeneration

The most recent generation observed by the daemon set controller.

updatedNumberScheduled

The total number of nodes that are running updated daemon pod

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DaemonSetStatus
  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 DaemonSetStatus(collisionCount: Optional[Int] = Optional.Absent, conditions: Optional[Vector[DaemonSetCondition]] = Optional.Absent, currentNumberScheduled: Int, desiredNumberScheduled: Int, numberAvailable: Optional[Int] = Optional.Absent, numberMisscheduled: Int, numberReady: Int, numberUnavailable: Optional[Int] = Optional.Absent, observedGeneration: Optional[Long] = Optional.Absent, updatedNumberScheduled: Optional[Int] = Optional.Absent)

    collisionCount

    Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

    conditions

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

    currentNumberScheduled

    The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

    desiredNumberScheduled

    The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

    numberAvailable

    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

    numberMisscheduled

    The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

    numberReady

    numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.

    numberUnavailable

    The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

    observedGeneration

    The most recent generation observed by the daemon set controller.

    updatedNumberScheduled

    The total number of nodes that are running updated daemon pod

Value Members

  1. val collisionCount: Optional[Int]
  2. val conditions: Optional[Vector[DaemonSetCondition]]
  3. val currentNumberScheduled: Int
  4. val desiredNumberScheduled: Int
  5. def getCollisionCount: IO[K8sFailure, Int]

    Count of hash collisions for the DaemonSet.

    Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

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

  6. def getConditions: IO[K8sFailure, Vector[DaemonSetCondition]]

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

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

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

  7. def getCurrentNumberScheduled: IO[K8sFailure, Int]

    The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod.

    The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

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

  8. def getDesiredNumberScheduled: IO[K8sFailure, Int]

    The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod).

    The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

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

  9. def getNumberAvailable: IO[K8sFailure, Int]

    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

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

  10. def getNumberMisscheduled: IO[K8sFailure, Int]

    The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod.

    The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

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

  11. def getNumberReady: IO[K8sFailure, Int]

    numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.

    numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.

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

  12. def getNumberUnavailable: IO[K8sFailure, Int]

    The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

    The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

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

  13. def getObservedGeneration: IO[K8sFailure, Long]

    The most recent generation observed by the daemon set controller.

    The most recent generation observed by the daemon set controller.

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

  14. def getUpdatedNumberScheduled: IO[K8sFailure, Int]

    The total number of nodes that are running updated daemon pod

    The total number of nodes that are running updated daemon pod

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

  15. val numberAvailable: Optional[Int]
  16. val numberMisscheduled: Int
  17. val numberReady: Int
  18. val numberUnavailable: Optional[Int]
  19. val observedGeneration: Optional[Long]
  20. val updatedNumberScheduled: Optional[Int]