Merge "Add multistore image option"
This commit is contained in:
commit
9586241409
@ -56,6 +56,9 @@ class ImageService(VersionedService):
|
||||
self.convert = convert
|
||||
|
||||
def set_default_tempest_options(self, conf):
|
||||
# set 'image-feature-enabled' only if multiple stores available
|
||||
if self._is_multistore_enabled():
|
||||
conf.set('image-feature-enabled', 'import_image', 'True')
|
||||
# When cirros is the image, set validation.image_ssh_user to cirros.
|
||||
# The option is heavily used in CI and it's also usefull for refstack,
|
||||
# because we don't have to specify overrides.
|
||||
@ -77,6 +80,16 @@ class ImageService(VersionedService):
|
||||
# default value
|
||||
conf.set('image', 'http_image', C.DEFAULT_IMAGE)
|
||||
|
||||
def _is_multistore_enabled(self):
|
||||
try:
|
||||
self.client.info_stores()['stores']
|
||||
except Exception:
|
||||
C.LOG.info('Can not retrieve stores, either multiple stores are '
|
||||
'not configured or user are not allowed access '
|
||||
'to the stores information')
|
||||
return False
|
||||
return True
|
||||
|
||||
def get_supported_versions(self):
|
||||
return ['v1', 'v2']
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user