PATCH
/
cloud
/
v2
/
k8s
/
clusters
/
{project_id}
/
{region_id}
/
{cluster_name}
/
pools
/
{pool_name}
Update k8s cluster pool
curl --request PATCH \
  --url https://api.gcore.com/cloud/v2/k8s/clusters/{project_id}/{region_id}/{cluster_name}/pools/{pool_name} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "auto_healing_enabled": true,
  "labels": {
    "my-label": "foo"
  },
  "max_node_count": 3,
  "min_node_count": 1,
  "node_count": 2,
  "taints": {
    "my-taint": "bar:NoSchedule"
  }
}'
{
  "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

pool_name
string
required

Pool name

Body

application/json
auto_healing_enabled
boolean | null

Enable/disable auto healing

Examples:

true

labels
object | null

Labels applied to the cluster pool

Examples:
{ "my-label": "foo" }
max_node_count
integer | null

Maximum node count

Examples:

3

min_node_count
integer | null

Minimum node count

Examples:

1

node_count
integer | null

Current node count

Examples:

2

taints
object | null

Taints applied to the cluster pool

Examples:
{ "my-taint": "bar:NoSchedule" }

Response

Updated pool details

auto_healing_enabled
boolean
required

Indicates the status of auto healing

Examples:

true

boot_volume_size
integer
required

Size of the boot volume

Examples:

50

boot_volume_type
string
required

Type of the boot volume

Examples:

"ssd_hiiops"

created_at
string
required

Date of function creation

Examples:

"2023-02-15T11:53:03+03:00"

crio_config
object
required

Crio configuration for pool nodes

Examples:
{ "default-ulimits": "nofile=1024:2048" }
flavor_id
string
required

ID of the cluster pool flavor

Examples:

"g1-standard-1-2"

id
string
required

UUID of the cluster pool

Examples:

"f01fd9a0-9548-48ba-82dc-a8c8b2d6f2f1"

is_public_ipv4
boolean
required

Indicates if the pool is public

Examples:

true

kubelet_config
object
required

Kubelet configuration for pool nodes

Examples:
{ "podMaxPids": "4096" }
labels
object
required

Labels applied to the cluster pool

Examples:
{ "my-label": "foo" }
max_node_count
integer
required

Maximum node count in the cluster pool

Examples:

10

min_node_count
integer
required

Minimum node count in the cluster pool

Examples:

1

name
string
required

Name of the cluster pool

Examples:

"test"

node_count
integer
required

Node count in the cluster pool

Examples:

2

status
string
required

Status of the cluster pool

Examples:

"Running"

taints
object
required

Taints applied to the cluster pool

Examples:
{ "my-taint": "bar:NoSchedule" }
servergroup_id
string
default:""

Server group ID

Examples:

"1772de21-f013-4b70-9f8f-a518985b3bc2"

servergroup_name
string
default:""

Server group name

Examples:

"my-server-group"

servergroup_policy
string
default:""

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

Examples:

"anti-affinity"