get_kubernetes_node_pool
Retrieve detailed information about a specific Kubernetes node pool using cluster and node pool identifiers, with support for both labels and UUIDs.
Instructions
Get detailed information about a specific node pool. Smart identifier resolution: use cluster/node pool labels or UUIDs.
Args: cluster_identifier: The cluster label or ID nodepool_identifier: The node pool label or ID
Returns: Detailed node pool information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_identifier | Yes | ||
nodepool_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_identifier": {
"title": "Cluster Identifier",
"type": "string"
},
"nodepool_identifier": {
"title": "Nodepool Identifier",
"type": "string"
}
},
"required": [
"cluster_identifier",
"nodepool_identifier"
],
"type": "object"
}