diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-09 06:55:14 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-05-09 06:55:14 -0700 |
commit | e5c81678d81ba9762ddfad8ce14a701ffa277022 (patch) | |
tree | 279c1c4f5c4aee6046fac96e997826ac723baeca /heat | |
parent | 7ffd32939cdb3f96644b7ce8965194788a8c3e1b (diff) |
Reduce multi-service VM size
Currently the multi-service VM consumes around 10 GB of RAM.
Reduce the VM flavor type down to xlarge (16GB) instead
of xxlarge (64 GB).
Change-Id: I38139863e0a8d7e92993041112ac1c08e166ab33
Issue-ID: INT-496
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'heat')
-rw-r--r-- | heat/ONAP/onap_openstack.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/ONAP/onap_openstack.yaml b/heat/ONAP/onap_openstack.yaml index 32c463b6..ab2f4e99 100644 --- a/heat/ONAP/onap_openstack.yaml +++ b/heat/ONAP/onap_openstack.yaml @@ -1648,7 +1648,7 @@ resources: type: OS::Nova::Server properties: image: { get_param: ubuntu_1604_image } - flavor: { get_param: flavor_xxlarge } + flavor: { get_param: flavor_xlarge } name: str_replace: template: base-multi-service |