Class DaemonSetStatusArgs
DaemonSetStatus represents the current status of a daemon set.
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Inputs.Extensions.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class DaemonSetStatusArgs : ResourceArgs
Properties
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 Input<int> CollisionCount { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Conditions
Represents the latest available observations of a DaemonSet's current state.
Declaration
public InputList<DaemonSetConditionArgs> Conditions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<DaemonSetConditionArgs> |
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 Input<int> CurrentNumberScheduled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<int> DesiredNumberScheduled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<int> NumberAvailable { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<int> NumberMisscheduled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<int> NumberReady { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<int> NumberUnavailable { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
ObservedGeneration
The most recent generation observed by the daemon set controller.
Declaration
public Input<int> ObservedGeneration { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
UpdatedNumberScheduled
The total number of nodes that are running updated daemon pod
Declaration
public Input<int> UpdatedNumberScheduled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |