Skip to content

Commit

Permalink
output: adds "wildcard tolerations" (fluent#41)
Browse files Browse the repository at this point in the history
to fix an issue with node taints causing the DaemonSet resource to under-report DESIRED while in fact fluent-bit was scheduled on all nodes.

Based on
https://github.com/kubernetes/kubernetes/blame/v1.12.2/cluster/addons/kube-proxy/kube-proxy-ds.yaml#L31

Signed-off-by: Staffan Olsson <[email protected]>
  • Loading branch information
solsson authored and edsiper committed Mar 25, 2019
1 parent 39886aa commit 826eabe
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions output/elasticsearch/fluent-bit-ds-minikube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,7 @@ spec:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
- operator: "Exists"
effect: "NoExecute"
- operator: "Exists"
effect: "NoSchedule"
4 changes: 4 additions & 0 deletions output/elasticsearch/fluent-bit-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ spec:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
- operator: "Exists"
effect: "NoExecute"
- operator: "Exists"
effect: "NoSchedule"
4 changes: 4 additions & 0 deletions output/kafka/fluent-bit-ds-minikube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,7 @@ spec:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
- operator: "Exists"
effect: "NoExecute"
- operator: "Exists"
effect: "NoSchedule"
4 changes: 4 additions & 0 deletions output/kafka/fluent-bit-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,7 @@ spec:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
- operator: "Exists"
effect: "NoExecute"
- operator: "Exists"
effect: "NoSchedule"

0 comments on commit 826eabe

Please sign in to comment.