Is there a toleration which lets a workload get deployed to every node including master in the kubernetes cluster

3/1/2020

Is there a toleration which lets workloads get deployed to every node including master nodes in the cluster regardless of any taints that any node has.

-- Arghya Sadhu
kubernetes

2 Answers

3/1/2020

If you want to deploy in every node, why not using a daemonset instead?

-- JGG
Source: StackOverflow

3/1/2020

This toleration will deploy your workload into every node including master nodes in your kubernetes cluster regardless of any taints on any nodes.

tolerations:
   - operator: Exists
-- Arghya Sadhu
Source: StackOverflow