summaryrefslogtreecommitdiffstats
path: root/kubernetes/so/charts/so-mariadb/values.yaml
diff options
context:
space:
mode:
authorvaibhav16dec <vaibhav.chopra@amdocs.com>2018-08-13 06:10:27 +0000
committervaibhav_16dec <vaibhav.chopra@amdocs.com>2018-09-07 07:58:18 +0000
commit0da8829497597e0472c3ce08af3ea59d65a60f5b (patch)
treef786c57277525cb0884b026f817f6eddecfe6191 /kubernetes/so/charts/so-mariadb/values.yaml
parent222709edc107d5317672b8bed2296c38bf0c8570 (diff)
Flavors defintion in resource limit
Issue-ID: OOM-1322 Change-Id: I5248ae206da6b5d65b0830f454813e6e14ec7284 Signed-off-by: vaibhav16dec <vaibhav.chopra@amdocs.com>
Diffstat (limited to 'kubernetes/so/charts/so-mariadb/values.yaml')
-rwxr-xr-xkubernetes/so/charts/so-mariadb/values.yaml35
1 files changed, 17 insertions, 18 deletions
diff --git a/kubernetes/so/charts/so-mariadb/values.yaml b/kubernetes/so/charts/so-mariadb/values.yaml
index 81370c7205..8ea7e13286 100755
--- a/kubernetes/so/charts/so-mariadb/values.yaml
+++ b/kubernetes/so/charts/so-mariadb/values.yaml
@@ -72,21 +72,20 @@ service:
nodePort: 52
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
- # s, 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 \ No newline at end of file
+# Resource Limit flavor
+flavor: small
+resources:
+ small:
+ limits:
+ cpu: 2
+ memory: 4Gi
+ requests:
+ cpu: 2
+ memory: 4Gi
+ large:
+ limits:
+ cpu: 4
+ memory: 8Gi
+ requests:
+ cpu: 4
+ memory: 8Gi