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