k8s-pilot

by bourbonkk

deployment_delete

Remove a Kubernetes Deployment by specifying the context, namespace, and name. Streamlines deletion operations across multi-cluster environments managed by k8s-pilot.

Instructions

Delete a Deployment from the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The Deployment name

Returns: Status of the deletion operation

Input Schema

NameRequiredDescriptionDefault
context_nameYes
nameYes
namespaceYes

Input Schema (JSON Schema)

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