Difference between revisions of "Tolerations:"
Jump to navigation
Jump to search
(9 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | {{lc}} | + | {{lc}} <code>[[tolerations]]:</code> |
+ | # 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 | ||
+ | |||
− | + | tolerations: | |
+ | - key: [[nvidia.com/gpu]] | ||
+ | operator: Exists | ||
+ | effect: NoSchedule | ||
== Related == | == Related == | ||
* <code>[[Kubernetes DaemonSets]]</code>: <code>[[kind: DaemonSet]]</code> | * <code>[[Kubernetes DaemonSets]]</code>: <code>[[kind: DaemonSet]]</code> | ||
+ | * <code>[[kubectl taint nodes]]</code> | ||
+ | * [[Kubernetes taints]] | ||
== See also == | == See also == | ||
+ | * {{node.kubernetes.io}} | ||
+ | * {{kubectl taint}} | ||
* {{DaemonSet}} | * {{DaemonSet}} | ||
* {{Kubernetes Workloads}} | * {{Kubernetes Workloads}} | ||
[[Category:Kubernetes]] | [[Category:Kubernetes]] |
Latest revision as of 08:54, 18 October 2024
# 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
tolerations: - key: nvidia.com/gpu operator: Exists effect: NoSchedule
Related[edit]
See also[edit]
Advertising: