We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c04603a + 11fdd94 commit 5bc316bCopy full SHA for 5bc316b
content/zh/examples/controllers/daemonset.yaml
@@ -15,8 +15,11 @@ spec:
15
name: fluentd-elasticsearch
16
spec:
17
tolerations:
18
- # this toleration is to have the daemonset runnable on master nodes
19
- # remove it if your masters can't run pods
+ # 这些容忍度设置是为了让守护进程在控制平面节点上运行
+ # 如果你不希望控制平面节点运行 Pod,可以删除它们
20
+ - key: node-role.kubernetes.io/control-plane
21
+ operator: Exists
22
+ effect: NoSchedule
23
- key: node-role.kubernetes.io/master
24
operator: Exists
25
effect: NoSchedule
0 commit comments