Add note on kubectl api-resources command

This commit is contained in:
lucperkins
2018-07-09 13:17:50 -07:00
parent 8910ac886f
commit f5b5d2baed
@@ -98,4 +98,14 @@ in some namespaces. However namespace resources are not themselves in a namespa
And low-level resources, such as [nodes](/docs/admin/node) and
persistentVolumes, are not in any namespace.
To see which Kubernetes resources are and aren't in a namespace:
```shell
# In a namespace
$ kubectl api-resources --namespaced=true
# Not in a namespace
$ kubectl api-resources --namespaced=false
```
{{% /capture %}}