List all resources under namespace
kubectl api-resources --verbs=list --namespaced -o name | while read res; do echo $res:; kubectl get --show-kind --ignore-not-found -n default $res; done
List all resources under namespace
kubectl api-resources --verbs=list --namespaced -o name | while read res; do echo $res:; kubectl get --show-kind --ignore-not-found -n default $res; done