Merge "Overcloud image has missing kernel_id and ramdisk_id properties"

This commit is contained in:
Zuul 2021-01-08 11:26:56 +00:00 committed by Gerrit Code Review
commit dc2aacaefd
1 changed files with 2 additions and 2 deletions

View File

@ -203,12 +203,12 @@ class FileImageClientAdapter(BaseClientAdapter):
def get_image_property(self, image, prop):
if prop == 'kernel_id':
path = os.path.splitext(image.id)[0] + '.vmlinuz'
if os.path.exists(path):
if os.path.exists(path.replace("file://", "")):
return path
return None
elif prop == 'ramdisk_id':
path = os.path.splitext(image.id)[0] + '.initrd'
if os.path.exists(path):
if os.path.exists(path.replace("file://", "")):
return path
return None
raise ValueError('Unsupported property %s' % prop)