diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2018-11-27 10:29:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-27 10:29:02 +0000 |
commit | 0c7bde336719413cf73224d2197b6677e9ba46cc (patch) | |
tree | 7f13294d7b4b48fb778e21869977e59a42507adb /kubernetes/clamp/charts/mariadb | |
parent | 2034ea7a185f91a631991f436963cc08ad3f4315 (diff) | |
parent | 45fba7670be417634d3b85ae0a15cc84acbbe324 (diff) |
Merge "Use flavors for resources in clamp deployment"
Diffstat (limited to 'kubernetes/clamp/charts/mariadb')
-rw-r--r-- | kubernetes/clamp/charts/mariadb/values.yaml | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/kubernetes/clamp/charts/mariadb/values.yaml b/kubernetes/clamp/charts/mariadb/values.yaml index a419f11b3a..13d1971028 100644 --- a/kubernetes/clamp/charts/mariadb/values.yaml +++ b/kubernetes/clamp/charts/mariadb/values.yaml @@ -25,6 +25,7 @@ global: # global defaults repository: nexus3.onap.org:10001 image: mariadb:10.1.11 pullPolicy: Always +flavor: small ################################################################# # Application configuration defaults. @@ -98,9 +99,18 @@ ingress: # 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: 1 - memory: 500Mi - requests: - cpu: 10m - memory: 200Mi + small: + limits: + cpu: 1 + memory: 500Mi + requests: + cpu: 10m + memory: 200Mi + large: + limits: + cpu: 1 + memory: 500Mi + requests: + cpu: 10m + memory: 200Mi + unlimited: {} |