File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 2
2
host=review.opendev.org
3
3
port=29418
4
4
project=openstack/glance.git
5
- defaultbranch=stable /zed
5
+ defaultbranch=unmaintained /zed
Original file line number Diff line number Diff line change 206
206
The regular tempest-integrated-storage job but with glance metadata injection
207
207
post-run : playbooks/post-check-metadata-injection.yaml
208
208
vars :
209
+ configure_swap_size : 8192
210
+ tempest_concurrency : 3
209
211
zuul_copy_output :
210
212
/etc/glance-remote : logs
211
213
devstack_localrc :
Original file line number Diff line number Diff line change 9
9
set -xe
10
10
cirrosimg=$(glance image-list | grep cirros | cut -d" " -f 2)
11
11
12
- echo "Dumping the cirros image for debugging..."
13
- glance image-show $cirrosimg
12
+ # There could be more than one cirros image so traverse through the list
13
+ for image in $cirrosimg
14
+ do
15
+ echo "Dumping the cirros image for debugging..."
16
+ glance image-show $image
14
17
15
- echo "Checking that the cirros image was decorated with metdata on import..."
16
- glance image-list --property-filter 'glance_devstack_test=doyouseeme?' | grep cirros
18
+ echo "Checking that the cirros image was decorated with metdata on import..."
19
+ glance image-list --property-filter 'glance_devstack_test=doyouseeme?' | grep $image
17
20
18
- echo "Checking that the cirros image was converted to raw on import..."
19
- glance image-show $cirrosimg | egrep -e 'disk_format.*raw'
21
+ echo "Checking that the cirros image was converted to raw on import..."
22
+ glance image-show $image | egrep -e 'disk_format.*raw'
23
+ done
20
24
environment : ' {{ zuul | zuul_legacy_vars }}'
You can’t perform that action at this time.
0 commit comments