[AAF] Augment CPU limit to locate 74/107674/1
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>
Thu, 14 May 2020 11:21:06 +0000 (13:21 +0200)
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>
Thu, 14 May 2020 11:21:06 +0000 (13:21 +0200)
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

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: {}