Allow custom memory overwrites for ES cluster

This commit is contained in:
Stefan Reimer 2021-01-18 17:18:30 +00:00
parent cf7d7c0e61
commit a9d03f929f
1 changed files with 2 additions and 2 deletions

View File

@ -54,12 +54,12 @@ spec:
resources:
requests:
cpu: {{ default "200m" .cpu_request }}
memory: {{ mul 2 ( default "2" .jvm_heap ) }}Gi
memory: {{ default ( mul 2 ( default "2" .jvm_heap ) ) .memory_request }}Gi
limits:
{{- if .cpu_limit }}
cpu: {{ .cpu_limit }}
{{- end }}
memory: {{ mul 2 ( default "2" .jvm_heap ) }}Gi
memory: {{ default ( mul 2 ( default "2" .jvm_heap ) ) .memory_limit }}Gi
env:
- name: ES_JAVA_OPTS
value: -Xms{{ default "2" .jvm_heap }}g -Xmx{{ default "2" .jvm_heap }}g