List CPU/Memory capacity of nodes
kubectl describe nodes | grep -A 2 -e "^\\s*CPU Requests"
kubectl describe nodes | egrep -A 2 "(^\\s*CPU Requests)|(^Name)"
List all Pods keyed by their host Node:
kubectl get pods -o json | jq 'reduce .items[] as $i ([]; . + [({($i.spec.nodeName): $i.metadata.name})])'