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
- Alphabetic
- By Inheritance
- DaemonSetStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- val collisionCount: Optional[Int]
- val conditions: Optional[Vector[DaemonSetCondition]]
- val currentNumberScheduled: Int
- val desiredNumberScheduled: Int
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val numberAvailable: Optional[Int]
- val numberMisscheduled: Int
- val numberReady: Int
- val numberUnavailable: Optional[Int]
- val observedGeneration: Optional[Long]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val updatedNumberScheduled: Optional[Int]
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated