Merge "Add disk size to the flavors"

This commit is contained in:
Zuul 2019-02-18 06:49:46 +00:00 committed by Gerrit Code Review
commit 3ad3be58c6
1 changed files with 7 additions and 2 deletions

View File

@ -95,5 +95,10 @@ function _config_tempest_plugin
_config_functionaltests
_config_tempest_plugin
openstack flavor show m1.heat_int || openstack flavor create m1.heat_int --ram 512
openstack flavor show m1.heat_micro || openstack flavor create m1.heat_micro --ram 128
# (FIXME) Remove this after backport to stable/rocky
# Remove/Recreate existing flavors
openstack flavor show m1.heat_int && openstack flavor delete m1.heat_int
openstack flavor show m1.heat_micro && openstack flavor delete m1.heat_micro
openstack flavor show m1.heat_int || openstack flavor create m1.heat_int --ram 512 --disk 4
openstack flavor show m1.heat_micro || openstack flavor create m1.heat_micro --ram 128 --disk 1