DaemonSetStatusArgs

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

DaemonSetStatus represents the current status of a daemon set.

Constructors

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

Properties

Link copied to clipboard
val collisionCount: Output<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
val conditions: Output<List<DaemonSetConditionArgs>>? = null

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: Output<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
val numberMisscheduled: Output<Int>

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
val numberReady: Output<Int>

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: Output<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: Output<Int>? = null

The most recent generation observed by the daemon set controller.

Link copied to clipboard
val updatedNumberScheduled: Output<Int>? = null

The total number of nodes that are running updated daemon pod

Functions

Link copied to clipboard
open override fun toJava(): DaemonSetStatusArgs