Support kubernetes taints and tolerations
I believe kubernetes taints and tolerations are not supported by the operator, yet I find it a much needed capability.
-
Sergey commented
is that what are you looking for:
...
podTemplate:
metadata:
labels:
network-role: mongodb
team: team1
tier: dev
spec:
nodeSelector:
deeming: SEC
component: mongodb-only
tolerations:
- effect: NoSchedule
key: mongodb
operator: Equal
value: SEC
- effect: NoSchedule
key: deeming
operator: Equal
value: SEC
- effect: NoSchedule
key: subnet
operator: Equal
value: NEW
...