Add Tolerations to pods

Tolerations can be added to pods, or pod templates (for Daemonset, Replicaset, Deployment and Statefulset). Based on the taints on a node, the Kubernetes scheduler will allow to run the Pod on this node if it has the corresponding tolerations.

Toleration syntax in Pod spec.

spec:
  tolerations:
    - key: node-role.kubernetes.io/master
      effect: NoSchedule
comments powered by Disqus