get_node_pods
Retrieve all pods running on a specific Kubernetes node by providing the context and node name. Outputs a JSON string with the pod details for efficient cluster management.
Instructions
Get all pods running on a specific node.
Args: context_name: The Kubernetes context name node_name: The name of the node to get pods for
Returns: JSON string containing the pods running on the node
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes | ||
node_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context_name": {
"title": "Context Name",
"type": "string"
},
"node_name": {
"title": "Node Name",
"type": "string"
}
},
"required": [
"context_name",
"node_name"
],
"title": "get_node_podsArguments",
"type": "object"
}