Reduce Ubuntu Server memory to 256 MB

Change-Id: I505fd6ea01837d51a5182c8eed58c712819214cb
This commit is contained in:
Federico Ressi 2020-11-23 11:41:44 +01:00
parent 832814174d
commit 4918777801
1 changed files with 2 additions and 2 deletions

View File

@ -35,11 +35,11 @@ class UbuntuImageFixture(glance.URLGlanceImageFixture):
container_format = CONF.tobiko.ubuntu.container_format or "bare"
username = CONF.tobiko.ubuntu.username or 'ubuntu'
password = CONF.tobiko.ubuntu.password
connection_timeout = CONF.tobiko.ubuntu.connection_timeout or 300.
connection_timeout = CONF.tobiko.ubuntu.connection_timeout or 600.
class UbuntuFlavorStackFixture(_nova.FlavorStackFixture):
ram = 512
ram = 256
class UbuntuServerStackFixture(_nova.ServerStackFixture):