diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-03-18 11:10:45 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-03-18 10:19:32 +0000 |
commit | 8fbc90f7e68902f08e512bbcfbe9d1ecaa49de1a (patch) | |
tree | ac6b6b9f5e141730c99ea0ebe3d504795f14f5be | |
parent | a9ec5eb4293d40a61d4a793018db7dc8490c1f69 (diff) |
[AAF][SMS] Relax CPU limits for vault
Current limits makes vault to throttle and at the end it's not able to
start.
This patch relaxes the CPU limit value so it should be better at start.
Issue-ID: OOM-2230
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I4dc49dc7f0d03ba4140367d985264b7337b52417
-rw-r--r-- | kubernetes/aaf/components/aaf-sms/components/aaf-sms-vault/values.yaml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kubernetes/aaf/components/aaf-sms/components/aaf-sms-vault/values.yaml b/kubernetes/aaf/components/aaf-sms/components/aaf-sms-vault/values.yaml index 750363c8f4..96b7499fdf 100644 --- a/kubernetes/aaf/components/aaf-sms/components/aaf-sms-vault/values.yaml +++ b/kubernetes/aaf/components/aaf-sms/components/aaf-sms-vault/values.yaml @@ -35,7 +35,6 @@ config: consul: server: true log_level: INFO - server: true data_dir: '/consul/data' ports: http: 8500 @@ -95,7 +94,7 @@ flavor: small resources: small: limits: - cpu: 40m + cpu: 400m memory: 40Mi requests: cpu: 10m |