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