From 6ad118fcfd45713e5d3af76ea6e16a787e6db55d Mon Sep 17 00:00:00 2001 From: pinikomarov Date: Tue, 21 Jul 2020 02:44:27 +0300 Subject: [PATCH] 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 --- tobiko/openstack/stacks/_cirros.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tobiko/openstack/stacks/_cirros.py b/tobiko/openstack/stacks/_cirros.py index 23cc618d5..6f2a539d2 100644 --- a/tobiko/openstack/stacks/_cirros.py +++ b/tobiko/openstack/stacks/_cirros.py @@ -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):