functional: bump flavor specs

We have VMs with 8 cores and 8GB of memory, this patch makes better
use of them by adding more cores (which shouldn't have much of a
negative impact) as CPU is not fully used during test runs.

This should hopefully improve performance of the functional tests.

Change-Id: Ib79a8c83758628286c68e941024de5bc2741b088
This commit is contained in:
Mohammed Naser 2018-12-09 00:34:20 -05:00
parent 2e2ebaf679
commit 98fcd79430
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ function add_flavor {
local flavor_vcpus="2"
fi
openstack flavor create m1.magnum --id 100 --ram ${flavor_ram:-1024} --disk ${flavor_disk:-10} --vcpus ${flavor_vcpus:-1}
openstack flavor create s1.magnum --id 200 --ram ${flavor_ram:-1024} --disk ${flavor_disk:-10} --vcpus ${flavor_vcpus:-1}
openstack flavor create m1.magnum --id 100 --ram ${flavor_ram:-1024} --disk ${flavor_disk:-10} --vcpus ${flavor_vcpus:-4}
openstack flavor create s1.magnum --id 200 --ram ${flavor_ram:-1024} --disk ${flavor_disk:-10} --vcpus ${flavor_vcpus:-4}
}
if ! function_exists echo_summary; then