kubectl: add kubectl describe in header (#5032)

https://github.com/tldr-pages/tldr/pull/4494 added `kubectl describe` help, but the main page still doesn't mention it. Add a note about its usage.

This is an important command, but it exceeds the suggested limit of 8 examples (do subcommands count as "examples"?). We could instead replace the `kubectl get` example with `kubectl {{get|describe}}`, but I'm really not a fan of that, since they're two different subcommands.
translation-badges
Steven Pitts 2020-12-19 14:20:46 -05:00 committed by GitHub
parent f7a116929c
commit 5a17971b1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,9 +1,10 @@
# kubectl
> Command line interface for running commands against Kubernetes clusters.
> See also `kubectl describe` and other pages for additional information.
> More information: <https://kubernetes.io/docs/reference/kubectl/>.
- List all information about a resource with more details:
- List information about a resource with more details:
`kubectl get {{pod|service|deployment|ingress|...}} -o wide`