File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 72
72
{{ toYaml .Values.manager.resources | indent 10 }}
73
73
serviceAccountName : {{ template "serviceAccountName" . }}
74
74
terminationGracePeriodSeconds : 10
75
+ tolerations :
76
+ - key : node.kubernetes.io/not-ready
77
+ operator : Exists
78
+ effect : NoExecute
79
+ tolerationSeconds : {{ .Values.tolerationSeconds }}
80
+ - key : node.kubernetes.io/unreachable
81
+ operator : Exists
82
+ effect : NoExecute
83
+ tolerationSeconds : {{ .Values.tolerationSeconds }}
84
+ affinity :
85
+ podAntiAffinity :
86
+ requiredDuringSchedulingIgnoredDuringExecution :
87
+ - labelSelector :
88
+ matchExpressions :
89
+ - key : app
90
+ operator : In
91
+ values :
92
+ - {{ template "mysql-operator.name" . }}
93
+ topologyKey : " kubernetes.io/hostname"
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ nameOverride: ""
14
14
fullnameOverride : " "
15
15
imagePrefix : " "
16
16
17
+ # # node.kubernetes.io/not-ready:NoExecute
18
+ # # node.kubernetes.io/unreachable:NoExecute
19
+ # # operator`s toleration time of the above two taints.
20
+ tolerationSeconds : 30
21
+
17
22
manager :
18
23
image : radondb/mysql-operator
19
24
tag : latest
You can’t perform that action at this time.
0 commit comments