diff options
author | toshrajbhardwaj <toshrajbhardwaj@gmail.com> | 2018-09-13 02:45:22 +0000 |
---|---|---|
committer | toshrajbhardwaj <toshrajbhardwaj@gmail.com> | 2018-09-13 02:46:50 +0000 |
commit | 72b5f0f909e6949e48c35c49661832ca2a17a1da (patch) | |
tree | 99660ef94dd9761f6bbda7085b40974529991432 /kubernetes/sdnc/values.yaml | |
parent | 62927a13cd4b1457d1ebfbd838a4cba145aa9c98 (diff) |
Resource Limits for sdnc
Issue-ID: OOM-1162
Change-Id: Ifb06ba4377152148ab817ec48e8cdd62bbff7f5d
Signed-off-by: toshrajbhardwaj <toshrajbhardwaj@gmail.com>
Diffstat (limited to 'kubernetes/sdnc/values.yaml')
-rw-r--r-- | kubernetes/sdnc/values.yaml | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/kubernetes/sdnc/values.yaml b/kubernetes/sdnc/values.yaml index 18ba426aee..1fd2fa5c8a 100644 --- a/kubernetes/sdnc/values.yaml +++ b/kubernetes/sdnc/values.yaml @@ -197,11 +197,23 @@ persistence: ingress: enabled: false -resources: {} -#resources: -# limits: -# cpu: 2 -# memory: 4Gi -# requests: -# cpu: 2 -# memory: 4Gi +#Resource Limit flavor -By Default using small +flavor: small +#segregation for different envionment (Small and Large) + +resources: + small: + limits: + cpu: 2 + memory: 4Gi + requests: + cpu: 2 + memory: 4Gi + + large: + limits: + cpu: 4 + memory: 8Gi + requests: + cpu: 4 + memory: 8Gi |