k8s-pilot

by bourbonkk

deployment_create

Create Kubernetes deployments in a specified namespace using the k8s-pilot MCP server. Define context, namespace, name, image, replicas, and labels to manage resources across multiple clusters efficiently.

Instructions

Create a Deployment in the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The Deployment name image: The container image to use replicas: Number of replicas labels: Labels to apply to the Deployment

Returns: Status of the creation operation

Input Schema

NameRequiredDescriptionDefault
context_nameYes
imageYes
labelsYes
nameYes
namespaceYes
replicasYes

Input Schema (JSON Schema)

{ "properties": { "context_name": { "title": "Context Name", "type": "string" }, "image": { "title": "Image", "type": "string" }, "labels": { "additionalProperties": true, "title": "Labels", "type": "object" }, "name": { "title": "Name", "type": "string" }, "namespace": { "title": "Namespace", "type": "string" }, "replicas": { "title": "Replicas", "type": "integer" } }, "required": [ "context_name", "namespace", "name", "image", "replicas", "labels" ], "title": "deployment_createArguments", "type": "object" }
ID: varavj97rf