node vs pod in kubernetes code example
Example 1: kubectl get pod by node
kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=
Example 2: kubectl run pod
kubectl run --image= --restart=Never
kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=
kubectl run --image= --restart=Never