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