diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-05-05 17:16:57 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2021-05-21 12:09:56 +0000 |
commit | 5432dd8b52f054087e4311ff996ee23bde2bed3b (patch) | |
tree | 80cadb234add655f90694b22375204088eaecb2f /kubernetes/common/mariadb-galera | |
parent | faee15607fea85ff245b2a30be8436c6eb5e45c2 (diff) |
[COMMON][MARIADB] Give higher requests/limits
With stability tests, we see that mariadb gets OOM killed and has some
CPU throttling.
Putting higher limits in order to make it no happen.
Scaling also replicas from VFC and APPC db from 3 to 1.
Issue-ID: INT-1883
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I2699b34ac5fcaa805c6fc01592c5a5f607b17fae
(cherry picked from commit 4d04706a2295529efbc265091979971dc90c8382)
Diffstat (limited to 'kubernetes/common/mariadb-galera')
-rw-r--r-- | kubernetes/common/mariadb-galera/values.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kubernetes/common/mariadb-galera/values.yaml b/kubernetes/common/mariadb-galera/values.yaml index 79b1cb2933..0991031939 100644 --- a/kubernetes/common/mariadb-galera/values.yaml +++ b/kubernetes/common/mariadb-galera/values.yaml @@ -478,18 +478,18 @@ flavor: small resources: small: limits: - cpu: 500m - memory: 2.5Gi + cpu: 1 + memory: 4Gi requests: - cpu: 100m - memory: 750Mi + cpu: 500m + memory: 2Gi large: limits: cpu: 2 - memory: 4Gi + memory: 6Gi requests: cpu: 1 - memory: 2Gi + memory: 3Gi unlimited: {} ## MariaDB Galera containers' liveness and readiness probes |