Skip to content

Instantly share code, notes, and snippets.

@FreedomBen
Last active July 16, 2022 13:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save FreedomBen/b00cef6a65314ad9e94a2f9225c852a2 to your computer and use it in GitHub Desktop.
Save FreedomBen/b00cef6a65314ad9e94a2f9225c852a2 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Versoin one
oc get $(oc api-resources --namspaced=true | tail -n+2 | awk '{ print $1 }' | xargs | sed -e 's/\s/,/g')
# Version two (from https://access.redhat.com/solutions/4165791)
oc api-resources --verbs=list --namespaced -o name | xargs -n 1 oc get --show-kind --ignore-not-found -n $PROJECT_NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment