Show / Hide Table of Contents

Class DaemonSetStatusArgs

DaemonSetStatus represents the current status of a daemon set.

Inheritance
System.Object
InputArgs
ResourceArgs
DaemonSetStatusArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Apps.V1Beta2
Assembly: Pulumi.Kubernetes.dll
Syntax
public class DaemonSetStatusArgs : ResourceArgs

Properties

View Source

CollisionCount

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.