blob: 1e49966d576ca287046a7379eecaad7502ab2bfc [file] [log] [blame]
sgarbuzfcd802e2018-03-05 10:20:04 +02001parameters:
2 _param:
Oleksii Zhurba4a0dd012019-07-18 12:56:26 -05003 glance_image_cirros_location: 'https://artifactory.mirantis.com/artifactory/binary-prod-local/mirantis/external/images/cirros/0.3.5/cirros-0.3.5-x86_64-disk.img'
4 glance_image_fedora_location: 'https://artifactory.mirantis.com/artifactory/binary-prod-local/mirantis/external/images/cloud-fedora/27/Fedora-Cloud-Base-27-1.6.x86_64.qcow2'
sgarbuzfcd802e2018-03-05 10:20:04 +02005 glance_image_cirros_name: 'TestCirros-0.3.5'
6 glance_image_fedora_name: 'TestFedora-27-1.6'
7 glance:
8 client:
9 enabled: True
10 identity:
11 admin_identity:
12 image:
13 cirros:
14 name: ${_param:glance_image_cirros_name}
15 location: ${_param:glance_image_cirros_location}
16 import_from_format: 'qcow2'
17 container_format: 'bare'
18 disk_format: 'qcow2'
19 tags:
20 - 'cirros'
21 visibility: public
22 wait_timeout: 1000
23 fedora:
24 name: ${_param:glance_image_fedora_name}
25 location: ${_param:glance_image_fedora_location}
26 import_from_format: 'qcow2'
27 container_format: 'bare'
28 disk_format: 'qcow2'
29 tags:
30 - 'fedora'
31 visibility: public
Oleksii Zhurba4a0dd012019-07-18 12:56:26 -050032 wait_timeout: 1000