Add resource limit for aai 85/67485/1
authorrajeshkalai <rajesh.kalaiselvan@amdocs.com>
Tue, 18 Sep 2018 20:55:39 +0000 (16:55 -0400)
committerrajeshkalai <rajesh.kalaiselvan@amdocs.com>
Tue, 18 Sep 2018 20:56:26 +0000 (16:56 -0400)
Issue-ID: OOM-1147

Change-Id: I1c052b277a8372c188297a53183ea0ded74161bf
Signed-off-by: rajeshkalai <rajesh.kalaiselvan@amdocs.com>
kubernetes/aai/templates/deployment.yaml
kubernetes/aai/values.yaml

index dc65cef..17ba83b 100644 (file)
@@ -80,7 +80,7 @@ spec:
           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
           periodSeconds: {{ .Values.readiness.periodSeconds }}
         resources:
-{{ toYaml .Values.resources | indent 12 }}
+{{ toYaml (pluck .Values.flavor .Values.resources| first) | indent 12 }}
       {{- if .Values.nodeSelector }}
       nodeSelector:
 {{ toYaml .Values.nodeSelector | indent 10 }}
index 99699a0..25f8ddf 100644 (file)
@@ -196,6 +196,8 @@ dockerhubRepository: registry.hub.docker.com
 image: aaionap/haproxy:1.2.4
 pullPolicy: Always
 
+flavor: small
+
 # flag to enable debugging - application support required
 debugEnabled: false
 
@@ -240,7 +242,6 @@ service:
 ingress:
   enabled: false
 
-resources: {}
   # We usually recommend not to specify default resources and to leave this as a conscious
   # choice for the user. This also increases chances charts run on environments with little
   # resources, such as Minikube. If you do want to specify resources, uncomment the following
@@ -251,10 +252,18 @@ resources: {}
   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
   # Minimum memory for development is 2 CPU cores and 4GB memory
   # Minimum memory for production is 4 CPU cores and 8GB memory
-#resources:
-#  limits:
-#    cpu: 2
-#    memory: 4Gi
-#  requests:
-#    cpu: 2
-#    memory: 4Gi
\ No newline at end of file
+resources:
+  small:
+    limits:
+      cpu: 2
+      memory: 4Gi
+    requests:
+      cpu: 2
+      memory: 4Gi
+  large:
+    limits:
+      cpu: 4
+      memory: 8Gi
+    requests:
+      cpu: 4
+      memory: 8Gi