Skip to content

Commit

Permalink
add default tolerations
Browse files Browse the repository at this point in the history
  • Loading branch information
gsstuart committed Oct 10, 2024
1 parent ae8795e commit be29335
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion deploy/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,16 @@ resources:

daemon:
affinity: {}
tolerations: []
tolerations:
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
operator: Exists
- effect: NoExecute
key: node.kubernetes.io/not-ready
operator: Exists

autoscaling:
enabled: false
Expand Down

0 comments on commit be29335

Please sign in to comment.