Up cirros image version

Devstack and tripleo is now using cirros 0.5.2 which have some changes
required to changes in nova hw machine type [1].
The old 0.4.0 image is set on DEFAULT_IMAGES just in case the first
default image won't be available. Updates on the list, once the mirrors
start to have the new cirros image.

1 - https://docs.openstack.org/nova/latest/admin/hw-machine-type.html

Change-Id: I3236c06fbfd2b8665f5d5098b1fdde0a64f1db57
This commit is contained in:
Arx Cruz 2021-04-30 18:00:51 +02:00
parent f88961eb59
commit 997e272617
1 changed files with 5 additions and 3 deletions

View File

@ -24,10 +24,12 @@ TEMPEST_WORKSPACE = os.getcwd()
DEPLOYER_INPUT = os.path.join(os.path.expanduser("~"),
"tempest-deployer-input.conf")
DEFAULT_IMAGE_DIR = 'etc'
DEFAULT_IMAGE = ("https://download.cirros-cloud.net/0.4.0/"
"cirros-0.4.0-x86_64-disk.img")
DEFAULT_IMAGE = ("https://download.cirros-cloud.net/0.5.2/"
"cirros-0.5.2-x86_64-disk.img")
DEFAULT_IMAGES = [("https://download.cirros-cloud.net/0.4.0/"
DEFAULT_IMAGES = [("https://download.cirros-cloud.net/0.5.2/"
"cirros-0.5.2-x86_64-disk.img"),
("https://download.cirros-cloud.net/0.4.0/"
"cirros-0.4.0-x86_64-disk.img"),
("http://images.rdoproject.org/cirros/"
"cirros-0.4.0-x86_64-disk.img")]