k8s-pilot

by bourbonkk

remove_node_taint

Remove a specific taint from a Kubernetes node by specifying the context, node name, and taint key. Returns updated node taints in JSON format.

Instructions

Remove a taint from a node.

Args: context_name: The Kubernetes context name node_name: The name of the node to modify taint_key: The taint key to remove

Returns: JSON string containing the updated node taints

Input Schema

NameRequiredDescriptionDefault
context_nameYes
node_nameYes
taint_keyYes

Input Schema (JSON Schema)

{ "properties": { "context_name": { "title": "Context Name", "type": "string" }, "node_name": { "title": "Node Name", "type": "string" }, "taint_key": { "title": "Taint Key", "type": "string" } }, "required": [ "context_name", "node_name", "taint_key" ], "title": "remove_node_taintArguments", "type": "object" }
ID: varavj97rf