System Grab Bag

View all TLDR pages from common (or from all pages)

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}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.