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 dc8c9bc + e4a8dc2 commit c4f6faaCopy full SHA for c4f6faa
content/zh/examples/controllers/fluentd-daemonset-update.yaml
@@ -19,9 +19,13 @@ spec:
19
name: fluentd-elasticsearch
20
spec:
21
tolerations:
22
- # this toleration is to have the daemonset runnable on master nodes
23
- # remove it if your masters can't run pods
+ # 这些容忍度使得守护进程能够在控制平面节点上运行
+ # 如果你的控制平面节点不应该运行 pod,请删除它们
24
+ - key: node-role.kubernetes.io/control-plane
25
+ operator: Exists
26
+ effect: NoSchedule
27
- key: node-role.kubernetes.io/master
28
29
effect: NoSchedule
30
containers:
31
- name: fluentd-elasticsearch
0 commit comments