k8s-pilot

by bourbonkk

deployment_update

Update Kubernetes deployments by modifying container images and replicas in specified namespaces using the k8s-pilot MCP server.

Instructions

Update an existing Deployment in the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The Deployment name image: The new container image to update replicas: The new number of replicas

Returns: Status of the update operation

Input Schema

NameRequiredDescriptionDefault
context_nameYes
imageYes
nameYes
namespaceYes
replicasYes

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" }, "replicas": { "title": "Replicas", "type": "integer" } }, "required": [ "context_name", "namespace", "name", "image", "replicas" ], "title": "deployment_updateArguments", "type": "object" }
ID: varavj97rf