Skip to content

Instantly share code, notes, and snippets.

@dejanu
Created March 26, 2026 21:03
Show Gist options
  • Select an option

  • Save dejanu/c080bc626a3c6e3e849cc0c69a5e063c to your computer and use it in GitHub Desktop.

Select an option

Save dejanu/c080bc626a3c6e3e849cc0c69a5e063c to your computer and use it in GitHub Desktop.
k8s_introspection
# 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
@dejanu
Copy link
Copy Markdown
Author

dejanu commented Mar 27, 2026

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment