k8s-pilot

by bourbonkk

replicaset_update

Update Kubernetes ReplicaSet with a new container image and replica count in specified namespace using the MCP server k8s-pilot. Input context name, namespace, ReplicaSet name, image, and replicas to execute changes.

Instructions

Update an existing ReplicaSet in the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The ReplicaSet 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": "replicaset_updateArguments", "type": "object" }
ID: varavj97rf