Show / Hide Table of Contents

Class V1DaemonSetStatus

DaemonSetStatus represents the current status of a daemon set.

Inheritance
object
V1DaemonSetStatus
Implements
IEquatable<V1DaemonSetStatus>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1DaemonSetStatus : IEquatable<V1DaemonSetStatus>

Constructors

V1DaemonSetStatus()

Declaration
public V1DaemonSetStatus()

V1DaemonSetStatus(V1DaemonSetStatus)

Declaration
protected V1DaemonSetStatus(V1DaemonSetStatus original)
Parameters
Type Name Description
V1DaemonSetStatus original

Properties

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
[JsonPropertyName("collisionCount")]
public int? CollisionCount { get; set; }
Property Value
Type Description
int?

Conditions

Represents the latest available observations of a DaemonSet's current state.

Declaration
[JsonPropertyName("conditions")]
public IList<V1DaemonSetCondition> Conditions { get; set; }
Property Value
Type Description
IList<V1DaemonSetCondition>

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
[JsonPropertyName("currentNumberScheduled")]
public int CurrentNumberScheduled { get; set; }
Property Value
Type Description
int

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
[JsonPropertyName("desiredNumberScheduled")]
public int DesiredNumberScheduled { get; set; }
Property Value
Type Description
int

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

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
[JsonPropertyName("numberAvailable")]
public int? NumberAvailable { get; set; }
Property Value
Type Description
int?

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
[JsonPropertyName("numberMisscheduled")]
public int NumberMisscheduled { get; set; }
Property Value
Type Description
int

NumberReady

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.

Declaration
[JsonPropertyName("numberReady")]
public int NumberReady { get; set; }
Property Value
Type Description
int

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
[JsonPropertyName("numberUnavailable")]
public int? NumberUnavailable { get; set; }
Property Value
Type Description
int?

ObservedGeneration

The most recent generation observed by the daemon set controller.

Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
Type Description
long?

UpdatedNumberScheduled

The total number of nodes that are running updated daemon pod

Declaration
[JsonPropertyName("updatedNumberScheduled")]
public int? UpdatedNumberScheduled { get; set; }
Property Value
Type Description
int?

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(V1DaemonSetStatus?)

Declaration
public virtual bool Equals(V1DaemonSetStatus? other)
Parameters
Type Name Description
V1DaemonSetStatus other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(V1DaemonSetStatus?, V1DaemonSetStatus?)

Declaration
public static bool operator ==(V1DaemonSetStatus? left, V1DaemonSetStatus? right)
Parameters
Type Name Description
V1DaemonSetStatus left
V1DaemonSetStatus right
Returns
Type Description
bool

operator !=(V1DaemonSetStatus?, V1DaemonSetStatus?)

Declaration
public static bool operator !=(V1DaemonSetStatus? left, V1DaemonSetStatus? right)
Parameters
Type Name Description
V1DaemonSetStatus left
V1DaemonSetStatus right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top Generated by DocFX