Class DaemonSetStatus
DaemonSetStatus represents the current status of a daemon set.
Inheritance
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Outputs.Apps.V1Beta2
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class DaemonSetStatus
Fields
View SourceCollisionCount
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.
Declaration
public readonly int CollisionCount
Field Value
| Type | Description |
|---|---|
| System.Int32 |
Conditions
Represents the latest available observations of a DaemonSet's current state.
Declaration
public readonly ImmutableArray<DaemonSetCondition> Conditions
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableArray<DaemonSetCondition> |
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/
Declaration
public readonly int CurrentNumberScheduled
Field Value
| Type | Description |
|---|---|
| System.Int32 |
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/
Declaration
public readonly int DesiredNumberScheduled
Field Value
| Type | Description |
|---|---|
| System.Int32 |
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)
Declaration
public readonly int NumberAvailable
Field Value
| Type | Description |
|---|---|
| System.Int32 |
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/
Declaration
public readonly int NumberMisscheduled
Field Value
| Type | Description |
|---|---|
| System.Int32 |
NumberReady
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.
Declaration
public readonly int NumberReady
Field Value
| Type | Description |
|---|---|
| System.Int32 |
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)
Declaration
public readonly int NumberUnavailable
Field Value
| Type | Description |
|---|---|
| System.Int32 |
ObservedGeneration
The most recent generation observed by the daemon set controller.
Declaration
public readonly int ObservedGeneration
Field Value
| Type | Description |
|---|---|
| System.Int32 |
UpdatedNumberScheduled
The total number of nodes that are running updated daemon pod
Declaration
public readonly int UpdatedNumberScheduled
Field Value
| Type | Description |
|---|---|
| System.Int32 |