aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/multicloud/values.yaml
diff options
context:
space:
mode:
authorMukul <mukul.joshi@amdocs.com>2018-09-11 11:42:00 +0000
committerMandeep Khinda <Mandeep.Khinda@amdocs.com>2018-09-12 14:29:06 +0000
commit62927a13cd4b1457d1ebfbd838a4cba145aa9c98 (patch)
tree74e48b8e2a98ac466efdc421953458c091ce5b6b /kubernetes/multicloud/values.yaml
parent908fc8cb12a093a7b81fc4f8a938fafbdd9356d8 (diff)
Resource Limits for multicloud
Issue-ID: OOM-1155 Change-Id: Ie727d224eb0ffbd619b46cf66d765b0b0afd454e Signed-off-by: Mukul <mukul.joshi@amdocs.com>
Diffstat (limited to 'kubernetes/multicloud/values.yaml')
-rw-r--r--kubernetes/multicloud/values.yaml36
1 files changed, 18 insertions, 18 deletions
diff --git a/kubernetes/multicloud/values.yaml b/kubernetes/multicloud/values.yaml
index aeed9e1763..dc04dbb185 100644
--- a/kubernetes/multicloud/values.yaml
+++ b/kubernetes/multicloud/values.yaml
@@ -70,21 +70,21 @@ 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
- # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
- #
- # Example:
- # Configure resource requests and limits
- # 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
+# Resource Limit flavor -By Default using small
+flavor: small
+# Segregation for Different environment (Small and Large)
+resources:
+ small:
+ limits:
+ cpu: 1
+ memory: 4Gi
+ requests:
+ cpu: 10m
+ memory: 1Gi
+ large:
+ limits:
+ cpu: 2
+ memory: 8Gi
+ requests:
+ cpu: 20m
+ memory: 2Gi