Implement Glance image management (setup and cleanup)

Change-Id: Ibba2b2ea4ca2e919aca3bbdde225db8f0b79450c
This commit is contained in:
Federico Ressi
2019-06-24 09:36:28 +02:00
parent ae4accef4e
commit 07ea422696
13 changed files with 414 additions and 79 deletions

View File

@@ -19,14 +19,8 @@ from oslo_config import cfg
def register_tobiko_options(conf):
conf.register_opts(
group=cfg.OptGroup('nova'),
opts=[cfg.StrOpt('image',
help="Default image for new server instances"),
cfg.StrOpt('flavor',
opts=[cfg.StrOpt('flavor',
help="Default flavor for new server instances"),
cfg.StrOpt('key_file', default='~/.ssh/id_rsa',
help="Default SSH key to login to server instances"),
cfg.StrOpt('username', default='cirros',
help="Default username to login to server instances"),
cfg.StrOpt('password', default='gocubsgo',
help="Default password to login to server instances"),
])