describe_pod
Retrieve detailed information about a specific pod in a Kubernetes cluster using pod name and namespace, enabling efficient cluster management.
Instructions
Describe a specific pod
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | No | default | |
pod_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"default": "default",
"title": "Namespace",
"type": "string"
},
"pod_name": {
"title": "Pod Name",
"type": "string"
}
},
"required": [
"pod_name"
],
"title": "describe_podArguments",
"type": "object"
}