Skip to content

Commit 6f188c4

Browse files
authored
Merge pull request #417 from davidz627/feature/tolerations
Add blanket tolerations to node daemonsets
2 parents e02597d + 541cb59 commit 6f188c4

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

deploy/kubernetes/base/node.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ spec:
5252
mountPath: /csi
5353
- name: device-dir
5454
mountPath: /dev
55-
# The following mounts are required to trigger host udevadm from container
55+
# The following mounts are required to trigger host udevadm from
56+
# container
5657
- name: udev-rules-etc
5758
mountPath: /etc/udev
5859
- name: udev-rules-lib
@@ -78,7 +79,8 @@ spec:
7879
hostPath:
7980
path: /dev
8081
type: Directory
81-
# The following mounts are required to trigger host udevadm from container
82+
# The following mounts are required to trigger host udevadm from
83+
# container
8284
- name: udev-rules-etc
8385
hostPath:
8486
path: /etc/udev
@@ -95,3 +97,8 @@ spec:
9597
hostPath:
9698
path: /sys
9799
type: Directory
100+
# https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
101+
# See "special case". This will tolerate everything. Node component should
102+
# be scheduled on all nodes.
103+
tolerations:
104+
- operator: Exists

0 commit comments

Comments
 (0)