Class V1DaemonSetStatus
DaemonSetStatus represents the current status of a daemon set.
Inheritance
V1DaemonSetStatus
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
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
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
View Source
CurrentNumberScheduled
Declaration
[JsonPropertyName("currentNumberScheduled")]
public int CurrentNumberScheduled { get; set; }
Property Value
View Source
DesiredNumberScheduled
Declaration
[JsonPropertyName("desiredNumberScheduled")]
public int DesiredNumberScheduled { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
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
View Source
NumberMisscheduled
Declaration
[JsonPropertyName("numberMisscheduled")]
public int NumberMisscheduled { get; set; }
Property Value
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
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
View Source
ObservedGeneration
The most recent generation observed by the daemon set controller.
Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
View Source
UpdatedNumberScheduled
The total number of nodes that are running updated daemon pod
Declaration
[JsonPropertyName("updatedNumberScheduled")]
public int? UpdatedNumberScheduled { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1DaemonSetStatus?)
Declaration
public virtual bool Equals(V1DaemonSetStatus? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1DaemonSetStatus?, V1DaemonSetStatus?)
Declaration
public static bool operator ==(V1DaemonSetStatus? left, V1DaemonSetStatus? right)
Parameters
Returns
View Source
operator !=(V1DaemonSetStatus?, V1DaemonSetStatus?)
Declaration
public static bool operator !=(V1DaemonSetStatus? left, V1DaemonSetStatus? right)
Parameters
Returns
Implements