

# Run a DaemonSet on Amazon Batch managed nodes
<a name="daemonset-on-batch-eks-nodes"></a>

Amazon Batch sets taints on Amazon Batch managed Kubernetes nodes. You can target a DaemonSet to run on Amazon Batch managed nodes with the following `tolerations`.

```
tolerations:
  - key: "batch.amazonaws.com/batch-node"
    operator: "Exists"
```

Another way to do this is with the following `tolerations`.

```
tolerations:
  - key: "batch.amazonaws.com/batch-node"
    operator: "Exists"
    effect: "NoSchedule"
  - key: "batch.amazonaws.com/batch-node"
    operator: "Exists"
    effect: "NoExecute"
```