NodeStatus

NodeStatus
Node Status

Kubernetes node information.

JSON Example
{
    "name": "string",
    "internal_ip": "string",
    "used_cpu": "number",
    "used_disk": "number",
    "used_memory": "number",
    "allocated_cpu": "number",
    "allocated_disk": "number",
    "allocated_memory": "number",
    "system_info": {
        "machine_id": "string",
        "system_uuid": "string",
        "boot_id": "string",
        "kernel_version": "string",
        "os_image": "string",
        "container_runtime_version": "string",
        "kubelet_version": "string",
        "kubeproxy_version": "string",
        "operating_system": "string",
        "architecture": "string"
    },
    "ready": "string",
    "is_control_plane": false
}
string
name
Optional

The name of the node.

string
internal_ip
Optional

The internal IP of the node.

number As float As float
used_cpu
Optional

The used CPU of the node in cores.

number As float As float
used_disk
Optional

The used disk of the node in GB.

number As float As float
used_memory
Optional

The used memory of the node in GB.

number As float As float
allocated_cpu
Optional

The allocated CPU of the node in cores.

number As float As float
allocated_disk
Optional

The allocated disk of the node in GB.

number As float As float
allocated_memory
Optional

The allocated memory of the node in GB.

system_info
Optional

Kubernetes node system information.

ready
Optional

The status of the node's ready condition, which can be one of TRUE, FALSE, or UNKNOWN.

Enumeration: TRUE, FALSE, UNKNOWN
boolean
is_control_plane
Optional

Indicates if the node is a control plane.