mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
956b39c553
* bug(helm) Fix tolerations and affinity mishandling in Helm template Signed-off-by: Kirill Belokon <belokon@mindbox.cloud> * add golden test case * increase resource requests * add node label to test --------- Signed-off-by: Kirill Belokon <belokon@mindbox.cloud> Co-authored-by: Tarun Pothulapati <tarun@dragonflydb.io>
18 lines
442 B
YAML
18 lines
442 B
YAML
tolerations:
|
|
- key: key/high-memory
|
|
operator: "Equal"
|
|
value: "true"
|
|
effect: "NoSchedule"
|
|
- key: key/high-memory
|
|
operator: "Equal"
|
|
value: "true"
|
|
effect: "PreferNoSchedule"
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: key/node-kind
|
|
operator: In
|
|
values:
|
|
- high-memory
|