diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2023-06-20 11:38:39 +0200 |
---|---|---|
committer | Vladimir Turok <vladimir.turok@t-systems.com> | 2023-07-14 09:20:13 +0000 |
commit | 555db9c1f910db06341070941b466e6c05827e27 (patch) | |
tree | f2230a42029b31f99f7f28475056962149dfa1a8 /kubernetes/policy/components/policy-pap/values.yaml | |
parent | e5f9156814f2571b0f4b79a4ba5789b743d837db (diff) |
[OOM] Fixing k8s resources and limits
This fix is adjusting OOM helm charts components resources limits and requests
Issue-ID: OOM-3199
Signed-off-by: Vladimir Turok <vladimir.turok@t-systems.com>
Change-Id: I56aeba925cda4984277ac7bbf23cfd158263d30f
Diffstat (limited to 'kubernetes/policy/components/policy-pap/values.yaml')
-rwxr-xr-x | kubernetes/policy/components/policy-pap/values.yaml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kubernetes/policy/components/policy-pap/values.yaml b/kubernetes/policy/components/policy-pap/values.yaml index a3bdba9b88..22428e7736 100755 --- a/kubernetes/policy/components/policy-pap/values.yaml +++ b/kubernetes/policy/components/policy-pap/values.yaml @@ -146,18 +146,18 @@ flavor: small resources: small: limits: - cpu: 2 - memory: 6Gi + cpu: 999 + memory: 1Gi requests: - cpu: 200m - memory: 2Gi + cpu: 0.5 + memory: 1Gi large: limits: - cpu: 4 - memory: 8Gi + cpu: 999 + memory: 2Gi requests: - cpu: 400m - memory: 4Gi + cpu: 1 + memory: 2Gi unlimited: {} #Pods Service Account |