From 997e272617f07b6684f540fb810d34947087e526 Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Fri, 30 Apr 2021 18:00:51 +0200 Subject: [PATCH] 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 --- config_tempest/constants.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config_tempest/constants.py b/config_tempest/constants.py index b00dcfb3..fc5eadeb 100644 --- a/config_tempest/constants.py +++ b/config_tempest/constants.py @@ -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")]