k8s-pilot

by bourbonkk

deployment_get

Retrieve detailed information about a specific Kubernetes Deployment by providing context name, namespace, and deployment name. Streamlines resource management in multi-cluster environments.

Instructions

Get details of a specific Deployment.

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

Returns: Detailed information about the Deployment

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_getArguments", "type": "object" }
ID: varavj97rf