Blueprints: Add guest-image and vsphere-ova to requestMapper

This adds guest-image and vsphere-ova as possible target environments to the requestMapper.
This commit is contained in:
regexowl 2024-02-26 10:15:48 +01:00 committed by Lucas Garfield
parent 5e2d22f0c6
commit 5ab0b6511b

View file

@ -75,10 +75,14 @@ const uploadTypeByTargetEnv = (imageType: ImageTypes): UploadTypes => {
return 'oci.objectstorage';
case 'wsl':
return 'aws.s3';
case 'guest-image':
return 'aws.s3';
case 'image-installer':
return 'aws.s3';
case 'vsphere':
return 'aws.s3';
case 'vsphere-ova':
return 'aws.s3';
case 'ami':
return 'aws';
default: {