k8s-pilot

by bourbonkk

uncordon_node

Mark a Kubernetes node as schedulable by uncordoning it using the specified context and node name, enabling resource allocation and workload placement.

Instructions

Uncordon a node (mark as schedulable).

Args: context_name: The Kubernetes context name node_name: The name of the node to uncordon

Returns: JSON string containing the result of the operation

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": "uncordon_nodeArguments", "type": "object" }
ID: varavj97rf