---
title: "List cluster nodes"
method: GET
path: "/api/v1/k8s/clusters/{cluster_id}/nodes"
tags: ["Kubernetes"]
---

# List cluster nodes

`GET /api/v1/k8s/clusters/{cluster_id}/nodes`

All nodes of the cluster (control plane, workers, storage, gateway) merged with live Kubernetes state when reachable.

## Path parameters

- `cluster_id` string, required

## Headers

- `X-Project-ID` string, uuid, required

## Response `200`

Cluster nodes

- object
  - `success` boolean
  - `nodes` K8sClusterNode[]
    - `id` string, uuid
    - `pool_id` string, uuid
    - `cluster_id` string, uuid
    - `name` string
    - `role` 'vnf' | 'master' | 'worker' | 'storage' — `vnf` is the cluster's network gateway
    - `status` 'pending' | 'provisioning' | 'running' | 'not_ready' | 'cordoned' | 'failed' | 'deleting' | 'deleted' — `running` means the kubelet reports Ready; `cordoned` = unschedulable (drain or manual cordon); `not_ready` = joined but failing health checks
    - `cpu` integer
    - `ram` integer — GB
    - `disk` integer — GB
    - `ip_address` string
    - `price_per_hour` number, double
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `has_live_data` boolean — Live Kubernetes state was reachable for this node
    - `live_name` string — Kubernetes node name
    - `ready` boolean
    - `kubelet_version` string
    - `os_image` string
    - `cpu_used_millicores` integer
    - `cpu_capacity_millicores` integer
    - `mem_used_bytes` integer
    - `mem_capacity_bytes` integer

## Other responses

- `404` — Resource not found

## Changes

- **2026-08-23** `72c803a128b2` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/rafftechnologies/apis/raff-api/changes/api/v1/k8s/clusters/:cluster_id/nodes/get.md)

---

[API](https://skmtc.dev/rafftechnologies/apis/raff-api.md) · [All operations](https://skmtc.dev/rafftechnologies/apis/raff-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rafftechnologies/raff-api/revisions/2f4df56be77c/schema)
