summaryrefslogtreecommitdiffstats
path: root/kubernetes/dcaegen2/charts/dcae-redis/values.yaml
diff options
context:
space:
mode:
authorvaibhav_16dec <vaibhav.chopra@amdocs.com>2018-09-20 12:32:47 +0000
committerMandeep Khinda <mandeep.khinda@amdocs.com>2018-09-25 19:24:15 +0000
commitdb582fafe8c9f975a0e43e9835c5f7e273eb699d (patch)
treeb1cf593eae658de1f81ef60e71107e5d3875b148 /kubernetes/dcaegen2/charts/dcae-redis/values.yaml
parentc7dcda78fcc810dad55633d977cbabc3b56daf22 (diff)
Resource limit:DCAE config
resolving merge conflict by implementing common resource template Issue-ID: OOM-1151 Change-Id: I3e2eac98ec1298d366a9a6b83f2a2d3a9846bd1f Signed-off-by: vaibhav_16dec <vaibhav.chopra@amdocs.com> Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/dcaegen2/charts/dcae-redis/values.yaml')
-rw-r--r--kubernetes/dcaegen2/charts/dcae-redis/values.yaml37
1 files changed, 19 insertions, 18 deletions
diff --git a/kubernetes/dcaegen2/charts/dcae-redis/values.yaml b/kubernetes/dcaegen2/charts/dcae-redis/values.yaml
index 6ccab9ccb7..40812f2144 100644
--- a/kubernetes/dcaegen2/charts/dcae-redis/values.yaml
+++ b/kubernetes/dcaegen2/charts/dcae-redis/values.yaml
@@ -94,21 +94,22 @@ persistence:
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: 2
+ memory: 2Gi
+ requests:
+ cpu: 1
+ memory: 1Gi
+ large:
+ limits:
+ cpu: 4
+ memory: 4Gi
+ requests:
+ cpu: 2
+ memory: 2Gi
+ unlimited: {}