resize_node_pool
Adjust the node count in a GKE cluster's node pool by specifying the project, cluster, location, node pool, and desired node count.
Instructions
Resize a node pool in a GKE cluster.
Args:
project_id: The ID of the GCP project
cluster_name: The name of the GKE cluster
location: The location (region or zone) of the cluster
node_pool_name: The name of the node pool to resize
node_count: The new node count for the pool
Returns:
Result of the node pool resize operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_name | Yes | ||
location | Yes | ||
node_count | Yes | ||
node_pool_name | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_name": {
"title": "Cluster Name",
"type": "string"
},
"location": {
"title": "Location",
"type": "string"
},
"node_count": {
"title": "Node Count",
"type": "integer"
},
"node_pool_name": {
"title": "Node Pool Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"cluster_name",
"location",
"node_pool_name",
"node_count"
],
"title": "resize_node_poolArguments",
"type": "object"
}