Merge pull request #6461 from iMartyn/mention-masters
Adds a note regarding the toleration of node-role.kubernetes.io/masterreviewable/pr6406/r3^2
commit
c456baf2fc
docs/concepts/workloads/controllers
|
@ -129,6 +129,8 @@ labelled as critical, the Daemon pods are created with an additional
|
|||
|
||||
Note that all above `NoSchedule` taints above are created only in version 1.8 or later if the alpha feature `TaintNodesByCondition` is enabled.
|
||||
|
||||
Also note that the `node-role.kubernetes.io/master` `NoSchedule` toleration specified in the above example is needed on 1.6 or later to schedule on *master* nodes as this is not a default toleration.
|
||||
|
||||
## Communicating with Daemon Pods
|
||||
|
||||
Some possible patterns for communicating with Pods in a DaemonSet are:
|
||||
|
|
|
@ -14,6 +14,9 @@ spec:
|
|||
labels:
|
||||
name: fluentd-elasticsearch
|
||||
spec:
|
||||
tolerations:
|
||||
- key: node-role.kubernetes.io/master
|
||||
effect: NoSchedule
|
||||
containers:
|
||||
- name: fluentd-elasticsearch
|
||||
image: gcr.io/google-containers/fluentd-elasticsearch:1.20
|
||||
|
|
Loading…
Reference in New Issue