DaemonSetStatus class
DaemonSetStatus represents the current status of a daemon set.
Constructors
-
DaemonSetStatus({int? collisionCount, List<
DaemonSetCondition> ? conditions, required int currentNumberScheduled, required int desiredNumberScheduled, int? numberAvailable, required int numberMisscheduled, required int numberReady, int? observedGeneration, int? updatedNumberScheduled}) -
Default constructor.
const
-
DaemonSetStatus.fromJson(Map<
String, dynamic> json) -
Creates a DaemonSetStatus from JSON data.
factory
Properties
- collisionCount → int?
-
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.
final
-
conditions
→ List<
DaemonSetCondition> ? -
Represents the latest available observations of a DaemonSet's current state.
final
- currentNumberScheduled → int
-
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/.
final
- desiredNumberScheduled → int
-
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/.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- numberAvailable → 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).
final
- numberMisscheduled → 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/.
final
- numberReady → 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.
final
-
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).
final
- observedGeneration → int?
-
The most recent generation observed by the daemon set controller.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- updatedNumberScheduled → int?
-
The total number of nodes that are running updated daemon pod.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object> - Converts a DaemonSetStatus instance to JSON data.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited