describe-pod
Retrieve detailed information about a specific Kubernetes pod, including its status, configuration, and resource usage, to monitor and troubleshoot containerized applications.
Instructions
Describe details of a Kubernetes pod
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | No | The namespace of the pod (optional, defaults to current context namespace) | |
pod | Yes | The name of the pod to describe |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"description": "The namespace of the pod (optional, defaults to current context namespace)",
"type": "string"
},
"pod": {
"description": "The name of the pod to describe",
"type": "string"
}
},
"required": [
"pod"
],
"type": "object"
}