Run a DaemonSet on Amazon Batch managed nodes - Amazon Batch
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Run a DaemonSet on Amazon Batch managed nodes

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"