nodeSelector allows schedule pods on some nodes.

1. Label node

kubectl label nodes node-name app=nginx

2. Update Daemonset

kubectl patch daemonset bar -p '{"spec": {"template": {"spec": {"nodeSelector": {"app": "nginx"}}}}}'