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

View Source

V1DaemonSetStatus()

Declaration
public V1DaemonSetStatus()
View Source

V1DaemonSetStatus(V1DaemonSetStatus)

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

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

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

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
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
[JsonPropertyName("numberAvailable")]
public int? NumberAvailable { get; set; }
Property Value
Type Description
int?
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
[JsonPropertyName("numberMisscheduled")]
public int NumberMisscheduled { get; set; }
Property Value
Type Description
int
View Source

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

ObservedGeneration

The most recent generation observed by the daemon set controller.

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

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

View Source

Equals(object?)

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

Equals(V1DaemonSetStatus?)

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

GetHashCode()

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

PrintMembers(StringBuilder)

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

ToString()

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

Operators

View Source

operator ==(V1DaemonSetStatus?, V1DaemonSetStatus?)

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

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>
  • View Source
In this article
Back to top Generated by DocFX