list_node_pools
Retrieve a list of node pools in a specified GKE cluster by providing the GCP project ID, cluster name, and location. Simplify cluster management within the GCP MCP system.
Instructions
List node pools 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
Returns:
List of node pools in the specified GKE cluster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_name | Yes | ||
location | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_name": {
"title": "Cluster Name",
"type": "string"
},
"location": {
"title": "Location",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"cluster_name",
"location"
],
"title": "list_node_poolsArguments",
"type": "object"
}