Set flavor property resources:MEMORY_MB to 0

* https://review.openstack.org/#/c/614540/ converts undercloud
  post deploystep to python where property resources:MEMORY_MB
  was setted to 1 but earlier it was zero. It fixes the typo.

Change-Id: If26e17cb2079ef994cc0e0506cbf40bf9023808e
This commit is contained in:
Chandan Kumar 2018-11-13 17:53:37 +05:30
parent 117d8e966f
commit 50b048cf0d
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def _configure_nova(sdk):
sizings = {'ram': 4096, 'vcpus': 1, 'disk': 40}
extra_specs = {'resources:CUSTOM_BAREMETAL': 1,
'resources:VCPU': 0,
'resources:MEMORY_MB': 1,
'resources:MEMORY_MB': 0,
'resources:DISK_GB': 0,
'capabilities:boot_option': 'local'}
profiles = ['control', 'compute', 'ceph-storage', 'block-storage',