Without information overload --- getting the requests and limits for a container quickly

jsonpath / jq

kubectl -n yourNamespace get pod yourPod -o jsonpath='{.spec.containers[0].resources}' | jq


jq

kubectl -n yourNamespace get pod yourPod -o json | jq '.spec.containers[0].resources'

grep

kubectl -n yourNamespace get pod yourPod -o yaml | grep -A6 resources


grep

kubectl -n yourNamespace describe pod yourPod | grep -A2 'Limits\|Requests'

image