cordon_node
Mark a Kubernetes node as unschedulable by cordoning it using the 'k8s-pilot' MCP server. Specify context and node name to isolate the node for maintenance or updates.
Instructions
Cordon a node (mark as unschedulable).
Args: context_name: The Kubernetes context name node_name: The name of the node to cordon
Returns: JSON string containing the result of the operation
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": "cordon_nodeArguments",
"type": "object"
}