Merge "Fail if referenced source image for a new volume does not exist"

This commit is contained in:
Zuul 2021-06-07 15:46:16 +00:00 committed by Gerrit Code Review
commit 4a1b092efb
1 changed files with 2 additions and 0 deletions

View File

@ -188,6 +188,8 @@ class VolumeModule(OpenStackModule):
)
if self.params['image']:
image_id = self.conn.get_image_id(self.params['image'])
if not image_id:
self.fail_json(msg="Failed to find image '%s'" % self.params['image'])
volume_args['imageRef'] = image_id
if self.params['volume']: