DaemonSetStatus

data class DaemonSetStatus(val collisionCount: Int? = null, val conditions: List<DaemonSetCondition>? = null, val currentNumberScheduled: Int, val desiredNumberScheduled: Int, val numberAvailable: Int? = null, val numberMisscheduled: Int, val numberReady: Int, val numberUnavailable: Int? = null, val observedGeneration: Int? = null, val updatedNumberScheduled: Int? = null)

DaemonSetStatus represents the current status of a daemon set.

Constructors

Link copied to clipboard
constructor(collisionCount: Int? = null, conditions: List<DaemonSetCondition>? = null, currentNumberScheduled: Int, desiredNumberScheduled: Int, numberAvailable: Int? = null, numberMisscheduled: Int, numberReady: Int, numberUnavailable: Int? = null, observedGeneration: Int? = null, updatedNumberScheduled: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val collisionCount: Int? = null

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.

Link copied to clipboard

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

Link copied to clipboard

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/

Link copied to clipboard

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/

Link copied to clipboard
val numberAvailable: Int? = null

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)

Link copied to clipboard

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/

Link copied to clipboard

The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.

Link copied to clipboard
val numberUnavailable: Int? = null

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)

Link copied to clipboard
val observedGeneration: Int? = null

The most recent generation observed by the daemon set controller.

Link copied to clipboard

The total number of nodes that are running updated daemon pod