-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tolerations not supported #1803
Comments
Hi @svenhakvoort, it's certainly something we can look into adding. We also plan to add support for other configurations from the pod spec, such as TopologyPodConstraints, so it would be good if we established a convention for configuring Pod spec components. Currently we allow pod affinity to be configured via For example, top level: kind: Infinispan
...
spec:
affinity:
...
tolerations:
...
topologySpreadConstraints:
... Or nested: kind: Infinispan
...
spec:
statefulset:
affinity:
...
tolerations:
...
topologySpreadConstraints:
... IMO the latter is the more flexible approach going forward, however we will need to transform the existing @rigazilla WDYT? |
Hi @ryanemerson thank you for your reply. I definitely agree with the second approach being the most flexible since it allows for more specific pod specs on different components if needed. And going from |
yeah, imo better to go with a nested struct |
This configuration will be added under the kind: Infinispan
...
spec:
scheduling:
affinity:
...
tolerations:
...
topologySpreadConstraints:
... |
Hi, are there any plans to support providing tolerations in addition to nodeAffinity?
Thank you!
The text was updated successfully, but these errors were encountered: