Node Status Args
data class NodeStatusArgs(val addresses: Output<List<NodeAddressArgs>>? = null, val allocatable: Output<Map<String, String>>? = null, val capacity: Output<Map<String, String>>? = null, val conditions: Output<List<NodeConditionArgs>>? = null, val config: Output<NodeConfigStatusArgs>? = null, val daemonEndpoints: Output<NodeDaemonEndpointsArgs>? = null, val images: Output<List<ContainerImageArgs>>? = null, val nodeInfo: Output<NodeSystemInfoArgs>? = null, val phase: Output<String>? = null, val volumesAttached: Output<List<AttachedVolumeArgs>>? = null, val volumesInUse: Output<List<String>>? = null) : ConvertibleToJava<NodeStatusArgs>
NodeStatus is information about the current status of a node.
Constructors
Link copied to clipboard
fun NodeStatusArgs(addresses: Output<List<NodeAddressArgs>>? = null, allocatable: Output<Map<String, String>>? = null, capacity: Output<Map<String, String>>? = null, conditions: Output<List<NodeConditionArgs>>? = null, config: Output<NodeConfigStatusArgs>? = null, daemonEndpoints: Output<NodeDaemonEndpointsArgs>? = null, images: Output<List<ContainerImageArgs>>? = null, nodeInfo: Output<NodeSystemInfoArgs>? = null, phase: Output<String>? = null, volumesAttached: Output<List<AttachedVolumeArgs>>? = null, volumesInUse: Output<List<String>>? = null)
Functions
Properties
Link copied to clipboard
List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#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).
Link copied to clipboard