feat: Support Affinity and Tolerations for Argo Chart (#206)

This commit is contained in:
Yong Wen Chua 2020-02-13 12:12:30 +08:00 committed by GitHub
parent 62f920f6c0
commit d43891fc38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 39 additions and 2 deletions

View file

@ -88,6 +88,12 @@ controller:
enabled: false
# minAvailable: 1
# maxUnavailable: 1
## Node selectors and tolerations for server scheduling to nodes with taints
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
##
nodeSelector: {}
tolerations: []
affinity: {}
executor:
image:
@ -126,6 +132,12 @@ ui:
enabled: false
# minAvailable: 1
# maxUnavailable: 1
## Node selectors and tolerations for server scheduling to nodes with taints
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
##
nodeSelector: {}
tolerations: []
affinity: {}
## Ingress configuration.
## ref: https://kubernetes.io/docs/user-guide/ingress/