diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2021-02-11 21:30:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-02-11 21:30:25 +0000 |
commit | 2ea763f92819d6290fa90a98cd7c2af55364ec6a (patch) | |
tree | 510d459cad96063dbde9b136be6be82b8ba4fc44 /kubernetes/portal/components/portal-cassandra/templates | |
parent | 3465ee1be5636b48753bc7bf4d0bf8ca1fac5147 (diff) | |
parent | 6e41a2c787c9c719fcc2226f0cd9740d2b9df43f (diff) |
Merge "[PORTAL][CASSANDRA] Configure Heap"
Diffstat (limited to 'kubernetes/portal/components/portal-cassandra/templates')
-rw-r--r-- | kubernetes/portal/components/portal-cassandra/templates/deployment.yaml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml b/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml index 84a78ab977..39cd0294c8 100644 --- a/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml +++ b/kubernetes/portal/components/portal-cassandra/templates/deployment.yaml @@ -1,7 +1,7 @@ {{/* # Copyright (c) 2017 Amdocs, Bell Canada # Modifications Copyright (c) 2018 AT&T -# Modifications Copyright (c) 2020 Nokia +# Modifications Copyright (c) 2020 Nokia, Orange # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -108,6 +108,12 @@ spec: value: rack1 - name: CASSANDRA_ENABLE_RPC value: "true" + {{- if eq "small" .Values.flavor }} + - name: MAX_HEAP_SIZE + value: {{ .Values.resources.small.heap.max }} + - name: HEAP_NEWSIZE + value: {{ .Values.resources.small.heap.new }} + {{- end }} volumeMounts: - mountPath: /etc/localtime name: localtime |