Created
March 26, 2026 21:03
-
-
Save dejanu/c080bc626a3c6e3e849cc0c69a5e063c to your computer and use it in GitHub Desktop.
k8s_introspection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # managed or not | |
| kubectl get no -owide | |
| # events events events | |
| kubectl get events -A --sort-by=.metadata.creationTimestamp | |
| # RBAC what can I do | |
| kubectl auth can-i --list | |
| # discovering CRDs | |
| kubectl get crds | |
| # supported API resources on the server | |
| kubectl api-resources | |
| # understand fileds of the resource | |
| kubectl explain <resource_kind> --recursive | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/kubescape/kubescape