cirros 0.5.1 is doesnt boot switch to 0.4

related bz:
 https://bugzilla.redhat.com/show_bug.cgi?id=1858972

Change-Id: I425bf2a5d95f39fcebf2239874b9df02e33e69cc
This commit is contained in:
pinikomarov 2020-07-21 02:44:27 +03:00 committed by Pini Komarov
parent e4a03c24cb
commit 6ad118fcfd
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ from tobiko.shell import sh
CONF = config.CONF
CIRROS_IMAGE_VERSION = '0.5.1'
CIRROS_IMAGE_VERSION = '0.4.0'
CIRROS_IMAGE_URL = (
'http://download.cirros-cloud.net/{version}/'
@ -37,7 +37,7 @@ class CirrosImageFixture(glance.URLGlanceImageFixture):
container_format = CONF.tobiko.cirros.container_format or "bare"
disk_format = CONF.tobiko.cirros.disk_format or "raw"
username = CONF.tobiko.cirros.username or 'cirros'
password = CONF.tobiko.cirros.password or 'gocubsgo'
password = CONF.tobiko.cirros.password or 'cubswin:)'
class CirrosFlavorStackFixture(_nova.FlavorStackFixture):