diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2019-10-29 12:00:36 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2019-11-06 09:16:06 +0100 |
commit | 22b89c7ae1e0f71e227cf549b9c77af750d2c414 (patch) | |
tree | 3331def5d6fceb451d7cca81713e83bdfb0cfe54 /kubernetes/portal/charts/portal-zookeeper/values.yaml | |
parent | bad993455c6293a8d9919610ec0e167af954f5ed (diff) |
[Portal] Adjust Pods Requests/Limits
I've adjusted the Requests / Limits of portal pods according to real
usage of "Orange Openlab" and "Onap daily master".
Calculation is the following:
per deployment:
* CPU/Mem requests is max of average from the two deployments
* CPU/Mem limits is (max of max from the two deployments) * 1.2
Moved portal-widget CPU limit to 1 as it's not starting if set to lower
than that.
Full values are available on jira ticket
(https://jira.onap.org/browse/PORTAL-517).
Change-Id: Ic02fef386e05351a6fa9e47bf47d5c2046f490e3
Issue-ID: PORTAL-517
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Signed-off-by: Lorraine Welch <lb2391@att.com>
Diffstat (limited to 'kubernetes/portal/charts/portal-zookeeper/values.yaml')
-rw-r--r-- | kubernetes/portal/charts/portal-zookeeper/values.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kubernetes/portal/charts/portal-zookeeper/values.yaml b/kubernetes/portal/charts/portal-zookeeper/values.yaml index c7c8030339..6037d246cf 100644 --- a/kubernetes/portal/charts/portal-zookeeper/values.yaml +++ b/kubernetes/portal/charts/portal-zookeeper/values.yaml @@ -62,11 +62,11 @@ flavor: small resources: small: limits: - cpu: 500m - memory: 600Mi + cpu: 100m + memory: 200Mi requests: - cpu: 250m - memory: 300Mi + cpu: 1m + memory: 80Mi large: limits: cpu: 1 |