1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

[Feature] Add nodeSelector to Chart (#659)

This commit is contained in:
Adam Janikowski 2020-11-03 12:46:48 +01:00 committed by GitHub
parent a49d25b3d5
commit 797418d6e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 0 deletions

View file

@ -4,6 +4,7 @@
- Allow to mount EmptyDir
- Allow to specify initContainers in pods
- Add serviceAccount, resources and securityContext fields to ID Group
- Add NodeSelector to Deployment Helm Chart
## [1.1.0](https://github.com/arangodb/kube-arangodb/tree/master) (2020-10-14)
- Change NumberOfCores and MemoryOverride flags to be set to true by default

View file

@ -113,6 +113,12 @@ Requested memory for operator pods.
Default: `256Mi`
### `operator.nodeSelector`
NodeSelector for Deployment pods.
Default: `{}`
### `operator.replicaCount`
Replication count for Operator deployment.

View file

@ -46,6 +46,10 @@ spec:
{{ toYaml .Values.operator.annotations | indent 16 }}
{{- end }}
spec:
{{- if .Values.operator.nodeSelector }}
nodeSelector:
{{ toYaml .Values.operator.nodeSelector | indent 16 }}
{{- end }}
serviceAccountName: {{ template "kube-arangodb.operatorName" . }}
affinity:
nodeAffinity:

View file

@ -29,6 +29,8 @@ operator:
allowChaos: false
nodeSelector: {}
features:
deployment: true
deploymentReplications: true