list_nodes
Retrieve basic information about all nodes in a Kubernetes cluster by specifying the context name. Returns JSON data for easy analysis and management.
Instructions
List all nodes in the Kubernetes cluster.
Args: context_name: The Kubernetes context name
Returns: JSON string containing basic information about all nodes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context_name": {
"title": "Context Name",
"type": "string"
}
},
"required": [
"context_name"
],
"title": "list_nodesArguments",
"type": "object"
}