GET
/
cloud
/
v2
/
k8s
/
clusters
/
{project_id}
/
{region_id}
/
{cluster_name}
/
pools
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
k8s_cluster_pool_list = client.cloud.k8s.clusters.pools.list(
    cluster_name="cluster_name",
    project_id=0,
    region_id=0,
)
print(k8s_cluster_pool_list.count)
{
  "count": 1,
  "results": [
    {
      "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"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

project_id
integer
required

Project identifier

region_id
integer
required

Region identifier

cluster_name
string
required

Cluster name

Response

200 - application/json

List of cluster pools

The response is of type object.