1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/common/kubectl-describe.md
2020-10-05 16:09:36 +01:00

24 lines
678 B
Markdown

# kubectl describe
> Show details of Kubernetes objects and resources.
> More information: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#describe>.
- Show details of pods in a namespace:
`kubectl describe pods -n {{namespace}}`
- Show details of nodes in a namespace:
`kubectl describe nodes -n {{namespace}}`
- Show the details of a specific pod in a namespace:
`kubectl describe pods {{pod_name}} -n {{namespace}}`
- Show the details of a specific node in a namespace:
`kubectl describe nodes {{node_name}} -n {{namespace}}`
- Show details of Kubernetes objects defined in a YAML manifest:
`kubectl describe -f {{path/to/manifest}}.yaml`