Describe Commands¶
Commands for getting detailed information about Kubernetes resources.
Describe Resources¶
k8stool describe <resource-type> <resource-name> [flags]
k8stool desc <resource-type> <resource-name> [flags] # Short alias
Resource Types¶
pods
(orpo
): Pod detailsdeployments
(ordeploy
): Deployment detailsservices
(orsvc
): Service detailsnodes
(orno
): Node details
Flags¶
Flag | Short | Description | Default |
---|---|---|---|
--namespace |
-n |
Target namespace | default |
Examples¶
Describe a pod:
Describe a deployment:
Describe a service:
Describe a node:
Output¶
The output includes detailed information about the resource, formatted for readability with color-coding for important fields.
Pod Description¶
- Basic Information
- Name, Namespace, Node
- Labels, Annotations
- Status
- Phase, Conditions
- IP Addresses
- Containers
- Image, Ports
- Resource Requests/Limits
- Environment Variables
- Events
- Recent events related to the pod
Deployment Description¶
- Basic Information
- Name, Namespace
- Labels, Annotations
- Spec
- Replicas
- Strategy
- Selector
- Status
- Available Replicas
- Conditions
- Events
- Recent events related to the deployment
Service Description¶
- Basic Information
- Name, Namespace
- Type, IP
- Ports
- Port mappings
- Target ports
- Endpoints
- Pod IPs and Ports
- Events
- Recent events related to the service
Node Description¶
- Basic Information
- Name, Labels
- Architecture, OS
- Status
- Conditions
- Capacity
- Allocatable Resources
- System Info
- Kernel Version
- Container Runtime
- Events
- Recent events related to the node
Related Commands¶
- Events: View resource events
- Pods: List and manage pods
- Deployments: List and manage deployments