diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-12-04 12:58:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-04 12:58:38 +0000 |
commit | 0c20716c0e970e65daef7d4a9bff16e589e649fa (patch) | |
tree | 8c7e0ee57c658226af10747dac089f3428700285 /kubernetes/oof/charts | |
parent | 46d96aee405beb2438a481ca35ee68519cae0ec0 (diff) | |
parent | c64875142ef9b3b1d8a2a5d83a7d295d1a50fdfc (diff) |
Merge "Use flavors for resources in oof csmo deployment"
Diffstat (limited to 'kubernetes/oof/charts')
-rw-r--r-- | kubernetes/oof/charts/oof-cmso/charts/oof-cmso-service/values.yaml | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/kubernetes/oof/charts/oof-cmso/charts/oof-cmso-service/values.yaml b/kubernetes/oof/charts/oof-cmso/charts/oof-cmso-service/values.yaml index a970f38157..98c6b4a050 100644 --- a/kubernetes/oof/charts/oof-cmso/charts/oof-cmso-service/values.yaml +++ b/kubernetes/oof/charts/oof-cmso/charts/oof-cmso-service/values.yaml @@ -65,7 +65,7 @@ service: internalPort: 8080 externalPort: 8080 #nodePort: 23 - # as of 20181022 port 23 is reserved for cmso + # as of 20181022 port 23 is reserved for cmso # see https://wiki.onap.org/display/DW/OOM+NodePort+List @@ -94,9 +94,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: 1.2Gi - requests: - cpu: 10m - memory: 800Mi + small: + limits: + cpu: 1 + memory: 1.2Gi + requests: + cpu: 10m + memory: 800Mi + large: + limits: + cpu: 1 + memory: 1.2Gi + requests: + cpu: 10m + memory: 800Mi + unlimited: {} |