Merge "[Portal] Adjust Pods Requests/Limits"
[oom.git] / kubernetes / common / music / charts / music-cassandra / values.yaml
index 2c75c58..f0888c1 100644 (file)
@@ -35,7 +35,7 @@ replicaCount: 3
 # When logging into DB the default username and password are 'cassandra'
 # kubectl exec -it <cassandra-n> -n <namespace> cqlsh -u cassandra -p cassandra
 image:
-  image: onap/music/cassandra_3_11:3.0.23
+  image: onap/music/cassandra_3_11:3.0.24
   pullPolicy: Always
 
 # Cassandra ENV configuration
@@ -110,10 +110,22 @@ persistence:
   storageType: local
   storageClass: ""
 
+# Resource Limit flavor -By Default using small
+flavor: small
+# Segregation for Different environment (Small and Large)
 resources:
-  limits:
-    cpu: 4
-    memory: 8Gi
-  requests:
-    cpu: 2
-    memory: 4Gi
+  small:
+    limits:
+      cpu: 500m
+      memory: 1.2Gi
+    requests:
+      cpu: 160m
+      memory: 900Mi
+  large:
+    limits:
+      cpu: 4
+      memory: 10Gi
+    requests:
+      cpu: 2
+      memory: 6Gi
+  unlimited: {}