File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,32 @@ NodeSelector for Deployment pods.
113113
114114Default: ` {} `
115115
116+ ### ` operator.tolerations `
117+
118+ Tolerations for Deployment pods.
119+
120+ There is built in configuration (can not be changed):
121+ ``` yaml
122+ tolerations :
123+ - key : " node.kubernetes.io/unreachable"
124+ operator : " Exists"
125+ effect : " NoExecute"
126+ tolerationSeconds : 5
127+ - key : " node.kubernetes.io/not-ready"
128+ operator : " Exists"
129+ effect : " NoExecute"
130+ tolerationSeconds : 5
131+ ` ` `
132+
133+ which can be extended by additional entries e.g.:
134+ ` ` ` yaml
135+ tolerations :
136+ - key : devops
137+ operator : Exists
138+ effect : NoSchedule
139+ ` ` `
140+ Default (empty): ` []`
141+
116142# ## `operator.replicaCount`
117143
118144Replication count for Operator deployment.
Original file line number Diff line number Diff line change @@ -181,3 +181,6 @@ spec:
181181 operator : " Exists"
182182 effect : " NoExecute"
183183 tolerationSeconds : 5
184+ {{- if .Values.operator.tolerations }}
185+ {{ toYaml .Values.operator.tolerations | indent 16 }}
186+ {{- end }}
Original file line number Diff line number Diff line change @@ -45,5 +45,8 @@ operator:
4545 base : alpine:3.11
4646 metricsExporter : arangodb/arangodb-exporter:0.1.7
4747 arango : arangodb/arangodb:latest
48+
49+ tolerations : []
50+
4851rbac :
4952 enabled : true
You can’t perform that action at this time.
0 commit comments