Add pre creating resources for heat tempest plugin
Add functionality for pre creating resources for heat tempest plugin
Change-Id: Ie230a6090a82a79a75d79d7d91a7c38130da3efe
Related-prod: PROD-18144
diff --git a/metadata/service/tempest/glance.yml b/metadata/service/tempest/glance.yml
new file mode 100644
index 0000000..6093c84
--- /dev/null
+++ b/metadata/service/tempest/glance.yml
@@ -0,0 +1,32 @@
+parameters:
+ _param:
+ glance_image_cirros_location: 'http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img'
+ glance_image_fedora_location: 'https://mirror.chpc.utah.edu/pub/fedora/linux/releases/27/CloudImages/x86_64/images/Fedora-Cloud-Base-27-1.6.x86_64.qcow2'
+ glance_image_cirros_name: 'TestCirros-0.3.5'
+ glance_image_fedora_name: 'TestFedora-27-1.6'
+ glance:
+ client:
+ enabled: True
+ identity:
+ admin_identity:
+ image:
+ cirros:
+ name: ${_param:glance_image_cirros_name}
+ location: ${_param:glance_image_cirros_location}
+ import_from_format: 'qcow2'
+ container_format: 'bare'
+ disk_format: 'qcow2'
+ tags:
+ - 'cirros'
+ visibility: public
+ wait_timeout: 1000
+ fedora:
+ name: ${_param:glance_image_fedora_name}
+ location: ${_param:glance_image_fedora_location}
+ import_from_format: 'qcow2'
+ container_format: 'bare'
+ disk_format: 'qcow2'
+ tags:
+ - 'fedora'
+ visibility: public
+ wait_timeout: 1000
\ No newline at end of file