Class V1NodeStatus
NodeStatus is information about the current status of a node.
Assembly: KubernetesClient.dll
Syntax
public record V1NodeStatus : IEquatable<V1NodeStatus>
Constructors
View Source
V1NodeStatus()
Declaration
View Source
V1NodeStatus(V1NodeStatus)
Declaration
protected V1NodeStatus(V1NodeStatus original)
Parameters
Properties
View Source
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
View Source
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
View Source
Capacity
Declaration
[JsonPropertyName("capacity")]
public IDictionary<string, ResourceQuantity> Capacity { get; set; }
Property Value
View Source
Conditions
Declaration
[JsonPropertyName("conditions")]
public IList<V1NodeCondition> Conditions { get; set; }
Property Value
View Source
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
View Source
DaemonEndpoints
Endpoints of daemons running on the Node.
Declaration
[JsonPropertyName("daemonEndpoints")]
public V1NodeDaemonEndpoints DaemonEndpoints { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Features
Features describes the set of features implemented by the CRI implementation.
Declaration
[JsonPropertyName("features")]
public V1NodeFeatures Features { get; set; }
Property Value
View Source
Images
List of container images on this node
Declaration
[JsonPropertyName("images")]
public IList<V1ContainerImage> Images { get; set; }
Property Value
View Source
NodeInfo
Declaration
[JsonPropertyName("nodeInfo")]
public V1NodeSystemInfo NodeInfo { get; set; }
Property Value
View Source
Phase
Declaration
[JsonPropertyName("phase")]
public string Phase { get; set; }
Property Value
View Source
RuntimeHandlers
The available runtime handlers.
Declaration
[JsonPropertyName("runtimeHandlers")]
public IList<V1NodeRuntimeHandler> RuntimeHandlers { get; set; }
Property Value
View Source
VolumesAttached
List of volumes that are attached to the node.
Declaration
[JsonPropertyName("volumesAttached")]
public IList<V1AttachedVolume> VolumesAttached { get; set; }
Property Value
View Source
VolumesInUse
List of attachable volumes in use (mounted) by the node.
Declaration
[JsonPropertyName("volumesInUse")]
public IList<string> VolumesInUse { 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(V1NodeStatus?)
Declaration
public virtual bool Equals(V1NodeStatus? 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 ==(V1NodeStatus?, V1NodeStatus?)
Declaration
public static bool operator ==(V1NodeStatus? left, V1NodeStatus? right)
Parameters
Returns
View Source
operator !=(V1NodeStatus?, V1NodeStatus?)
Declaration
public static bool operator !=(V1NodeStatus? left, V1NodeStatus? right)
Parameters
Returns
Implements