get_namespace_details
Retrieve comprehensive details about a specific Kubernetes namespace in JSON format by providing the context name and namespace. Use this tool to manage and monitor namespace configurations across clusters efficiently.
Instructions
Get detailed information about a specific namespace.
Args: context_name: The Kubernetes context name namespace: The name of the namespace to get details for
Returns: JSON string containing detailed information about the namespace
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| context_name | Yes | ||
| namespace | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "context_name": {
      "title": "Context Name",
      "type": "string"
    },
    "namespace": {
      "title": "Namespace",
      "type": "string"
    }
  },
  "required": [
    "context_name",
    "namespace"
  ],
  "title": "get_namespace_detailsArguments",
  "type": "object"
}