Merge "Switch to CirrOS image version 5.1"

This commit is contained in:
Zuul 2020-04-24 12:31:03 +00:00 committed by Gerrit Code Review
commit c9e233f23f
1 changed files with 4 additions and 2 deletions

View File

@ -22,9 +22,11 @@ from tobiko.shell import sh
CONF = config.CONF
CIRROS_IMAGE_VERSION = '0.5.1'
CIRROS_IMAGE_URL = \
'http://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img'
CIRROS_IMAGE_URL = (
'http://download.cirros-cloud.net/{version}/'
'cirros-{version}-x86_64-disk.img').format(version=CIRROS_IMAGE_VERSION)
class CirrosImageFixture(glance.URLGlanceImageFixture):