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

# List node pools

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

## Path parameters

- `cluster_id` string, required

## Headers

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

## Response `200`

Node pools with their nodes

- object
  - `success` boolean
  - `node_pools` K8sNodePool[]
    - `id` string, uuid, required
    - `cluster_id` string, uuid
    - `name` string, required
    - `node_count` integer, required — Target node count
    - `actual_node_count` integer — Nodes that currently exist (differs from `node_count` while scaling)
    - `min_nodes` integer
    - `max_nodes` integer
    - `autoscale_enabled` boolean
    - `plan_id` integer
    - `cpu` integer
    - `ram` integer — GB
    - `disk` integer — GB
    - `labels` string
    - `taints` string
    - `status` 'pending' | 'provisioning' | 'running' | 'scaling' | 'failed' | 'deleting' | 'deleted', required — `scaling`/`deleting` are asynchronous — watch `status_message` for the outcome (e.g. a drain blocked by a PodDisruptionBudget)
    - `status_message` string
    - `nodes` K8sNode[]
      - `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
    - `created_at` string, date-time
    - `updated_at` string, date-time

## 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/pools/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)
