Show / Hide Table of Contents

Class DaemonSetStatus

DaemonSetStatus represents the current status of a daemon set.

Inheritance
System.Object
DaemonSetStatus
Inherited Members
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.Outputs.Apps.V1Beta2
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class DaemonSetStatus

Fields

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 readonly int CollisionCount
Field Value
Type Description
System.Int32
View Source

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>
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 readonly int CurrentNumberScheduled
Field Value
Type Description
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 readonly int DesiredNumberScheduled
Field Value
Type Description
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 readonly int NumberAvailable
Field Value
Type Description
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 readonly int NumberMisscheduled
Field Value
Type Description
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 readonly int NumberReady
Field Value
Type Description
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 readonly int NumberUnavailable
Field Value
Type Description
System.Int32
View Source

ObservedGeneration

The most recent generation observed by the daemon set controller.

Declaration
public readonly int ObservedGeneration
Field Value
Type Description
System.Int32
View Source

UpdatedNumberScheduled

The total number of nodes that are running updated daemon pod

Declaration
public readonly int UpdatedNumberScheduled
Field Value
Type Description
System.Int32
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.