[AAF] Augment CPU limit to locate 37/107837/1
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>
Thu, 14 May 2020 11:21:06 +0000 (13:21 +0200)
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>
Tue, 19 May 2020 07:57:29 +0000 (07:57 +0000)
AAF locate may be long to start because of too small CPU limits.
Augmenting them in order to have a more reliable behavior

Issue-ID: OOM-2411
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: Iefcd79ee66be56570a5df83111cbb6559346371e
(cherry picked from commit 4aff7f0653121f7114d42eec3d09531ac13c1e27)

kubernetes/aaf/charts/aaf-locate/values.yaml

index 47b2f20..01a5ab1 100644 (file)
@@ -62,18 +62,18 @@ ingress:
 
 # Configure resource requests and limits
 resources:
 small:
-    limits:
-      cpu: 100m
-      memory: 320Mi
-    requests:
-      cpu: 1m
-      memory: 210Mi
 large:
-    limits:
-      cpu: 400m
-      memory: 1Gi
-    requests:
-      cpu: 40m
-      memory: 500Mi
 unlimited: {}
+ small:
+   limits:
+     cpu: 500m
+     memory: 320Mi
+   requests:
+     cpu: 1m
+     memory: 210Mi
+ large:
+   limits:
+     cpu: 400m
+     memory: 1Gi
+   requests:
+     cpu: 40m
+     memory: 500Mi
+ unlimited: {}