Is there a --sort-by option that allows you to sort by nodes which have the greatest number of pods running?
how about this way:
kubectl get nodes -o=custom-columns=Pods:.status.capacity.pods,NAME:metadata.name | sort -nr
or kubectl get nodes --sort-by=.status.capacity.pods