Class V1NodeStatus
NodeStatus is information about the current status of a node.
Assembly: KubernetesClient.dll
Syntax
public record V1NodeStatus : IEquatable<V1NodeStatus>
Constructors
V1NodeStatus()
Declaration
V1NodeStatus(V1NodeStatus)
Declaration
protected V1NodeStatus(V1NodeStatus original)
Parameters
Properties
Addresses
List of addresses reachable to the node. Queried from cloud provider, if
available. More info:
https://kubernetes.io/docs/reference/node/node-status/#addresses Note: This
field is declared as mergeable, but the merge key is not sufficiently unique,
which can cause data corruption when it is merged. Callers should instead use a
full-replacement patch. See https://pr.k8s.io/79391 for an example. Consumers
should assume that addresses can change during the lifetime of a Node. However,
there are some exceptions where this may not be possible, such as Pods that
inherit a Node's address in its own status or consumers of the downward API
(status.hostIP).
Declaration
[JsonPropertyName("addresses")]
public IList<V1NodeAddress> Addresses { get; set; }
Property Value
Allocatable
Allocatable represents the resources of a node that are available for
scheduling. Defaults to Capacity.
Declaration
[JsonPropertyName("allocatable")]
public IDictionary<string, ResourceQuantity> Allocatable { get; set; }
Property Value
Capacity
Declaration
[JsonPropertyName("capacity")]
public IDictionary<string, ResourceQuantity> Capacity { get; set; }
Property Value
Conditions
Declaration
[JsonPropertyName("conditions")]
public IList<V1NodeCondition> Conditions { get; set; }
Property Value
Config
Status of the config assigned to the node via the dynamic Kubelet config
feature.
Declaration
[JsonPropertyName("config")]
public V1NodeConfigStatus Config { get; set; }
Property Value
DaemonEndpoints
Endpoints of daemons running on the Node.
Declaration
[JsonPropertyName("daemonEndpoints")]
public V1NodeDaemonEndpoints DaemonEndpoints { get; set; }
Property Value
DeclaredFeatures
DeclaredFeatures represents the features related to feature gates that are
declared by the node.
Declaration
[JsonPropertyName("declaredFeatures")]
public IList<string> DeclaredFeatures { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Features
Features describes the set of features implemented by the CRI implementation.
Declaration
[JsonPropertyName("features")]
public V1NodeFeatures Features { get; set; }
Property Value
Images
List of container images on this node
Declaration
[JsonPropertyName("images")]
public IList<V1ContainerImage> Images { get; set; }
Property Value
NodeInfo
Declaration
[JsonPropertyName("nodeInfo")]
public V1NodeSystemInfo NodeInfo { get; set; }
Property Value
Phase
Declaration
[JsonPropertyName("phase")]
public string Phase { get; set; }
Property Value
RuntimeHandlers
The available runtime handlers.
Declaration
[JsonPropertyName("runtimeHandlers")]
public IList<V1NodeRuntimeHandler> RuntimeHandlers { get; set; }
Property Value
VolumesAttached
List of volumes that are attached to the node.
Declaration
[JsonPropertyName("volumesAttached")]
public IList<V1AttachedVolume> VolumesAttached { get; set; }
Property Value
VolumesInUse
List of attachable volumes in use (mounted) by the node.
Declaration
[JsonPropertyName("volumesInUse")]
public IList<string> VolumesInUse { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1NodeStatus?)
Declaration
public virtual bool Equals(V1NodeStatus? 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 ==(V1NodeStatus?, V1NodeStatus?)
Declaration
public static bool operator ==(V1NodeStatus? left, V1NodeStatus? right)
Parameters
Returns
operator !=(V1NodeStatus?, V1NodeStatus?)
Declaration
public static bool operator !=(V1NodeStatus? left, V1NodeStatus? right)
Parameters
Returns
Implements