k8s-pilot

by bourbonkk

get_node_pods

Retrieve all pods running on a specific Kubernetes node using context name and node name. Returns pod details in JSON format for easy analysis.

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

NameRequiredDescriptionDefault
context_nameYes
node_nameYes

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" }
ID: varavj97rf