NodeStatusArgs

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
constructor(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)

Properties

Link copied to clipboard
val addresses: Output<List<NodeAddressArgs>>? = null

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
val allocatable: Output<Map<String, String>>? = null

Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.

Link copied to clipboard
val capacity: Output<Map<String, String>>? = null

Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity

Link copied to clipboard
val conditions: Output<List<NodeConditionArgs>>? = null

Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition

Link copied to clipboard
val config: Output<NodeConfigStatusArgs>? = null

Status of the config assigned to the node via the dynamic Kubelet config feature.

Link copied to clipboard

Endpoints of daemons running on the Node.

Link copied to clipboard
val images: Output<List<ContainerImageArgs>>? = null

List of container images on this node

Link copied to clipboard
val nodeInfo: Output<NodeSystemInfoArgs>? = null

Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info

Link copied to clipboard
val phase: Output<String>? = null

NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.

Link copied to clipboard

List of volumes that are attached to the node.

Link copied to clipboard
val volumesInUse: Output<List<String>>? = null

List of attachable volumes in use (mounted) by the node.

Functions

Link copied to clipboard
open override fun toJava(): NodeStatusArgs