diff options
author | Jing Lu <lvjing5@huawei.com> | 2017-03-28 03:31:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-28 03:31:19 +0000 |
commit | 355f6833772f06b7935c58d2b15f9a1f3409c28b (patch) | |
tree | 58f82af967be81cb231613262691aa711442f816 /tests/ci/load_images.sh | |
parent | 4c1b439ccd286dc8c8a84cd8eed57d1b230c6177 (diff) | |
parent | 0691766d310e00d7f1cec763427db271076b5633 (diff) |
Merge "Bugfix:add storperf flavor for TC074"
Diffstat (limited to 'tests/ci/load_images.sh')
-rwxr-xr-x | tests/ci/load_images.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/ci/load_images.sh b/tests/ci/load_images.sh index 16395cb0a..4be51fd15 100755 --- a/tests/ci/load_images.sh +++ b/tests/ci/load_images.sh @@ -215,7 +215,7 @@ create_nova_flavor() { if ! openstack flavor list | grep -q yardstick-flavor; then echo - echo "========== Create nova flavor ==========" + echo "========== Creating yardstick-flavor ==========" # Create the nova flavor used by some sample test cases openstack flavor create --id 100 --ram 512 --disk 3 --vcpus 1 yardstick-flavor # DPDK-enabled OVS requires guest memory to be backed by large pages @@ -227,6 +227,13 @@ create_nova_flavor() openstack flavor set --property hw:mem_page_size=large yardstick-flavor fi fi + + if ! openstack flavor list | grep -q storperf; then + echo + echo "========== Creating storperf flavor ==========" + # Create the nova flavor used by storperf test case + openstack flavor create --id auto --ram 8192 --disk 4 --vcpus 2 storperf + fi } main() |