from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
k8s_cluster_pool = client.cloud.k8s.clusters.pools.update(
pool_name="pool_name",
project_id=0,
region_id=0,
cluster_name="cluster_name",
)
print(k8s_cluster_pool.id)
{
"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"
}
}
from gcore import Gcore
client = Gcore(
api_key="My API Key",
)
k8s_cluster_pool = client.cloud.k8s.clusters.pools.update(
pool_name="pool_name",
project_id=0,
region_id=0,
cluster_name="cluster_name",
)
print(k8s_cluster_pool.id)
{
"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"
}
}
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Project identifier
Region identifier
Cluster name
Pool name
Updated pool details
The response is of type object
.
Was this page helpful?