Skip to content

Commit d02493c

Browse files
authored
Merge pull request #36 from stackhpc/upstream/zed-2024-07-15
Synchronise zed with upstream
2 parents 671c3b1 + 5e9bc9d commit d02493c

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.gitreview

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
host=review.opendev.org
33
port=29418
44
project=openstack/glance.git
5-
defaultbranch=stable/zed
5+
defaultbranch=unmaintained/zed

.zuul.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@
206206
The regular tempest-integrated-storage job but with glance metadata injection
207207
post-run: playbooks/post-check-metadata-injection.yaml
208208
vars:
209+
configure_swap_size: 8192
210+
tempest_concurrency: 3
209211
zuul_copy_output:
210212
/etc/glance-remote: logs
211213
devstack_localrc:

playbooks/post-check-metadata-injection.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,16 @@
99
set -xe
1010
cirrosimg=$(glance image-list | grep cirros | cut -d" " -f 2)
1111
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
1417
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
1720
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
2024
environment: '{{ zuul | zuul_legacy_vars }}'

0 commit comments

Comments
 (0)