Merge "Fix image format set for rally test cases"
authorMorgan Richomme <morgan.richomme@orange.com>
Tue, 6 Sep 2016 15:16:15 +0000 (15:16 +0000)
committerGerrit Code Review <gerrit@172.30.200.206>
Tue, 6 Sep 2016 15:16:15 +0000 (15:16 +0000)
testcases/OpenStack/rally/run_rally-cert.py
testcases/OpenStack/rally/scenario/opnfv-glance.yaml

index f121854..7bd8b53 100755 (executable)
@@ -163,6 +163,7 @@ def build_task_args(test_file_name):
     task_args['image_name'] = GLANCE_IMAGE_NAME
     task_args['flavor_name'] = FLAVOR_NAME
     task_args['glance_image_location'] = GLANCE_IMAGE_PATH
+    task_args['glance_image_format'] = GLANCE_IMAGE_FORMAT
     task_args['tmpl_dir'] = TEMPLATE_DIR
     task_args['sup_dir'] = SUPPORT_DIR
     task_args['users_amount'] = USERS_AMOUNT
index adbf8b7..3a67e74 100644 (file)
@@ -1,7 +1,7 @@
   GlanceImages.create_and_delete_image:
     -
       args:
-        {{ glance_args(location=glance_image_location) }}
+        {{ glance_args(location=glance_image_location, type=glance_image_format) }}
       context:
         {{ user_context(tenants_amount, users_amount, use_existing_users) }}
       runner:
@@ -12,7 +12,7 @@
   GlanceImages.create_and_list_image:
     -
       args:
-        {{ glance_args(location=glance_image_location) }}
+        {{ glance_args(location=glance_image_location, type=glance_image_format) }}
       context:
         {{ user_context(tenants_amount, users_amount, use_existing_users) }}
       runner:
@@ -32,7 +32,7 @@
   GlanceImages.create_image_and_boot_instances:
     -
       args:
-        {{ glance_args(location=glance_image_location) }}
+        {{ glance_args(location=glance_image_location, type=glance_image_format) }}
         flavor:
             name: {{ flavor_name }}
         number_instances: 2