We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
global.affinity
global.tolerations
It will be convenient to have global.affinity and global.tolerations option so that we don't have to define them at each component example:
global: { affinity: { nodeAffinity: { requiredDuringSchedulingIgnoredDuringExecution: { nodeSelectorTerms: [{ matchExpressions: [{ key: 'deployment', operator: 'In', values: ['my-affinity'], }], }], }, }, }, tolerations: [{ effect: 'NoSchedule', key: 'dedicated', operator: 'Equal', value: 'my-toleration', }], },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It will be convenient to have
global.affinity
andglobal.tolerations
option so that we don't have to define them at each componentexample:
The text was updated successfully, but these errors were encountered: