k8s-pilot

by bourbonkk

daemonset_update

Update a Kubernetes DaemonSet with a new container image in the specified namespace using the MCP server k8s-pilot. Simplifies cluster resource management.

Instructions

Update an existing DaemonSet in the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The DaemonSet name image: The new container image to update

Returns: Status of the update operation

Input Schema

NameRequiredDescriptionDefault
context_nameYes
imageYes
nameYes
namespaceYes

Input Schema (JSON Schema)

{ "properties": { "context_name": { "title": "Context Name", "type": "string" }, "image": { "title": "Image", "type": "string" }, "name": { "title": "Name", "type": "string" }, "namespace": { "title": "Namespace", "type": "string" } }, "required": [ "context_name", "namespace", "name", "image" ], "title": "daemonset_updateArguments", "type": "object" }
ID: varavj97rf