2025-12-16 10:20:31 -07:00
|
|
|
# kubectl api-resources
|
|
|
|
|
|
|
|
|
|
> Print the supported API resources on the server.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://kubernetes.io/docs/reference/kubectl/generated/kubectl_api-resources/>.
|
2025-12-16 10:20:31 -07:00
|
|
|
|
|
|
|
|
- Print the supported API resources:
|
|
|
|
|
|
|
|
|
|
`kubectl api-resources`
|
|
|
|
|
|
|
|
|
|
- Print the supported API resources with more information:
|
|
|
|
|
|
|
|
|
|
`kubectl api-resources {{[-o|--output]}} wide`
|
|
|
|
|
|
|
|
|
|
- Print the supported API resources sorted by a column:
|
|
|
|
|
|
|
|
|
|
`kubectl api-resources --sort-by {{name}}`
|
|
|
|
|
|
|
|
|
|
- Print the supported namespaced resources:
|
|
|
|
|
|
|
|
|
|
`kubectl api-resources --namespaced`
|
|
|
|
|
|
|
|
|
|
- Print the supported non-namespaced resources:
|
|
|
|
|
|
|
|
|
|
`kubectl api-resources --namespaced=false`
|
|
|
|
|
|
|
|
|
|
- Print the supported API resources with a specific API group:
|
|
|
|
|
|
|
|
|
|
`kubectl api-resources --api-group {{api_group}}`
|