From 45e37325e634bba55b18aaf84aace95f833ee8fe Mon Sep 17 00:00:00 2001 From: dena <91744937+deer-wmde@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:56:56 +0200 Subject: [PATCH] lift sql cpu limits (#1791) Bug: T375874 --- k8s/helmfile/env/production/sql.values.yaml.gotmpl | 4 ++-- k8s/helmfile/env/staging/sql.values.yaml.gotmpl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/k8s/helmfile/env/production/sql.values.yaml.gotmpl b/k8s/helmfile/env/production/sql.values.yaml.gotmpl index 09f3be689..1c9decb44 100644 --- a/k8s/helmfile/env/production/sql.values.yaml.gotmpl +++ b/k8s/helmfile/env/production/sql.values.yaml.gotmpl @@ -10,7 +10,7 @@ primary: cpu: '2' memory: 8Gi limits: - cpu: '2' + cpu: null memory: 8Gi persistence: enabled: true @@ -74,7 +74,7 @@ secondary: cpu: '2' memory: 8Gi limits: - cpu: '2' + cpu: null memory: 8Gi readinessProbe: enabled: true diff --git a/k8s/helmfile/env/staging/sql.values.yaml.gotmpl b/k8s/helmfile/env/staging/sql.values.yaml.gotmpl index 2387b29f8..fe1b980f4 100644 --- a/k8s/helmfile/env/staging/sql.values.yaml.gotmpl +++ b/k8s/helmfile/env/staging/sql.values.yaml.gotmpl @@ -4,7 +4,7 @@ primary: cpu: 750m memory: 1000Mi limits: - cpu: 750m + cpu: null memory: 1000Mi configuration: |- [mysqld] @@ -61,7 +61,7 @@ secondary: cpu: 750m memory: 900Mi limits: - cpu: 750m + cpu: null memory: 900Mi readinessProbe: enabled: false