diff options
author | vaibhavjayas <vaibhav.jayas@amdocs.com> | 2018-09-19 09:33:41 +0000 |
---|---|---|
committer | vaibhavjayas <vaibhav.jayas@amdocs.com> | 2018-09-19 09:35:26 +0000 |
commit | afb925dceb213156e2cd7909815cef3332b041ed (patch) | |
tree | b64be5c9aa647a4364aeedb86c7985c375f122d7 /kubernetes/vid/values.yaml | |
parent | c196546bae5346d162b3fb20de96d9df8fe260ca (diff) |
Resource Limit for VID
Issue-ID: OOM-1167
Change-Id: Ib598b25bbf8fbda5b0fb41e3dfaf13dd7a31bd6c
Signed-off-by: vaibhavjayas <vaibhav.jayas@amdocs.com>
Diffstat (limited to 'kubernetes/vid/values.yaml')
-rw-r--r-- | kubernetes/vid/values.yaml | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/kubernetes/vid/values.yaml b/kubernetes/vid/values.yaml index 34a265c656..23812c9b48 100644 --- a/kubernetes/vid/values.yaml +++ b/kubernetes/vid/values.yaml @@ -91,21 +91,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: 20m + memory: 2Gi + requests: + cpu: 20m + memory: 2Gi + large: + limits: + cpu: 40m + memory: 4Gi + requests: + cpu: 40 + memory: 4Gi
\ No newline at end of file |