From 24b61625e5a3e94537d47ffc53e2c04bc6b857e0 Mon Sep 17 00:00:00 2001 From: Federico Ressi Date: Wed, 29 Sep 2021 14:30:16 +0200 Subject: [PATCH] Set a default password for the ubuntu customized image Change-Id: I57c7d71bab9b2d61fa8acc7785b55ae5135b83dd --- tobiko/openstack/stacks/_ubuntu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tobiko/openstack/stacks/_ubuntu.py b/tobiko/openstack/stacks/_ubuntu.py index 0c23fa269..2e2e2489a 100644 --- a/tobiko/openstack/stacks/_ubuntu.py +++ b/tobiko/openstack/stacks/_ubuntu.py @@ -43,7 +43,7 @@ class UbuntuMinimalImageFixture(glance.URLGlanceImageFixture): disk_format = CONF.tobiko.ubuntu.disk_format or "qcow2" container_format = CONF.tobiko.ubuntu.container_format or "bare" username = CONF.tobiko.ubuntu.username or 'ubuntu' - password = CONF.tobiko.ubuntu.password + password = CONF.tobiko.ubuntu.password or 'ununtu' connection_timeout = CONF.tobiko.ubuntu.connection_timeout or 600.