remove_node_taint
Remove specified taints from Kubernetes nodes using context, node name, and taint key to update node configurations efficiently.
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
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes | ||
node_name | Yes | ||
taint_key | Yes |
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"
}