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 7272{{ toYaml .Values.manager.resources | indent 10 }}
7373 serviceAccountName : {{ template "serviceAccountName" . }}
7474 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: ""
1414fullnameOverride : " "
1515imagePrefix : " "
1616
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+
1722manager :
1823 image : radondb/mysql-operator
1924 tag : latest
You can’t perform that action at this time.
0 commit comments