diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-10-07 06:33:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-10-07 06:33:14 +0000 |
commit | 2b8141540093abff451c4fd333028a47b03c9e0c (patch) | |
tree | 595488d580db9a404abb4b25a577eea49b8e5360 /kubernetes/sdc/components/sdc-wfd-fe/values.yaml | |
parent | 70f269ea180517b0f6878fb34e65e61cde3a3b2c (diff) | |
parent | 32172345e3f07d8a1de4468ba2296561a170a392 (diff) |
Merge "[SDC] Update pod limits and timeouts"
Diffstat (limited to 'kubernetes/sdc/components/sdc-wfd-fe/values.yaml')
-rw-r--r-- | kubernetes/sdc/components/sdc-wfd-fe/values.yaml | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/kubernetes/sdc/components/sdc-wfd-fe/values.yaml b/kubernetes/sdc/components/sdc-wfd-fe/values.yaml index 56804924ca..e88139832f 100644 --- a/kubernetes/sdc/components/sdc-wfd-fe/values.yaml +++ b/kubernetes/sdc/components/sdc-wfd-fe/values.yaml @@ -114,21 +114,22 @@ ingress: nginx.ingress.kubernetes.io/backend-protocol: "HTTP" nginx.ingress.kubernetes.io/rewrite-target: "/workflows/" -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 +# Segregation for Different environment (Small and Large) +flavor: small +resources: + small: + limits: + cpu: 500m + memory: 2Gi + requests: + cpu: 40m + memory: 1Gi + large: + limits: + cpu: 1 + memory: 4Gi + requests: + cpu: 80m + memory: 2Gi + unlimited: {} |