Difference between revisions of "Tolerations:"

From wikieduonline
Jump to navigation Jump to search
Line 22: Line 22:
 
* <code>[[Kubernetes DaemonSets]]</code>: <code>[[kind: DaemonSet]]</code>
 
* <code>[[Kubernetes DaemonSets]]</code>: <code>[[kind: DaemonSet]]</code>
 
* <code>[[kubectl taint nodes]]</code>
 
* <code>[[kubectl taint nodes]]</code>
 +
* [[Kubernetes taints]]
  
 
== See also ==
 
== See also ==

Revision as of 09:24, 25 January 2024

      tolerations:
     # these tolerations are to have the daemonset runnable on control plane nodes
     # remove them if your control plane nodes should not run pods


 tolerations:
   - key: node.kubernetes.io/not-ready
     operator: Exists
     effect: NoExecute
     tolerationSeconds: 300
   - key: node.kubernetes.io/unreachable
     operator: Exists
     effect: NoExecute
     tolerationSeconds: 300


Related

See also

Advertising: