1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:22:09 +02:00

kubectl-get: add get all example (#7043)

This commit is contained in:
Nelson Figueroa 2021-10-23 19:20:43 -07:00 committed by GitHub
parent f9c01797e7
commit c99cc4e254
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,10 @@
`kubectl get services -n {{namespace}}`
- Get all resources in a specified namespace:
`kubectl get all -n {{namespace}}`
- Get Kubernetes objects defined in a YAML manifest:
`kubectl get -f {{path/to/manifest}}.yaml`