v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Managed Kubernetes

Get k8s cluster pool

get/cloud/v2/k8s/clusters/{project_id}/{region_id}/{cluster_name}/pools/{pool_name}

Path parameters

project_idinteger required

Project ID

Example:1

Project ID

region_idinteger required

Region ID

Example:7

Region ID

cluster_namestring required

Cluster name

Example:my-cluster

Cluster name

pool_namestring required

Pool name

Example:my-pool

Pool name

Response

OK

auto_healing_enabledboolean required

Indicates the status of auto healing

boot_volume_sizeinteger required

Size of the boot volume

boot_volume_typestring required

Type of the boot volume

created_atstring required

Date of function creation

crio_configobject required

Crio configuration for pool nodes

flavor_idstring required

ID of the cluster pool flavor

idstring required

UUID of the cluster pool

is_public_ipv4boolean required

Indicates if the pool is public

kubelet_configobject required

Kubelet configuration for pool nodes

labelsobject required

Labels applied to the cluster pool

max_node_countinteger required

Maximum node count in the cluster pool

min_node_countinteger required

Minimum node count in the cluster pool

namestring required

Name of the cluster pool

node_countinteger required

Node count in the cluster pool

servergroup_idstring

Server group ID

servergroup_namestring

Server group name

servergroup_policystring

Anti-affinity, affinity or soft-anti-affinity server group policy

statusstring required

Status of the cluster pool

taintsobject required

Taints applied to the cluster pool

Example response

{
  "auto_healing_enabled": true,
  "boot_volume_size": 50,
  "boot_volume_type": "ssd_hiiops",
  "created_at": "2023-02-15T11:53:03+03:00",
  "crio_config": {
    "default-ulimits": "nofile=1024:2048"
  },
  "flavor_id": "g1-standard-1-2",
  "id": "f01fd9a0-9548-48ba-82dc-a8c8b2d6f2f1",
  "is_public_ipv4": true,
  "kubelet_config": {
    "podMaxPids": "4096"
  },
  "labels": {
    "my-label": "foo"
  },
  "max_node_count": 10,
  "min_node_count": 1,
  "name": "test",
  "node_count": 2,
  "servergroup_id": "1772de21-f013-4b70-9f8f-a518985b3bc2",
  "servergroup_name": "my-server-group",
  "servergroup_policy": "anti-affinity",
  "status": "Running",
  "taints": {
    "my-taint": "bar:NoSchedule"
  }
}