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

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. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. val collisionCount: Optional[Int]
  7. val conditions: Optional[Vector[DaemonSetCondition]]
  8. val currentNumberScheduled: Int
  9. val desiredNumberScheduled: Int
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. 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.

  13. 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.

  14. 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.

  15. 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.

  16. 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.

  17. 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.

  18. 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.

  19. 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.

  20. 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.

  21. 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.

  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. val numberAvailable: Optional[Int]
  27. val numberMisscheduled: Int
  28. val numberReady: Int
  29. val numberUnavailable: Optional[Int]
  30. val observedGeneration: Optional[Long]
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. val updatedNumberScheduled: Optional[Int]
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped