CreateImageWizard: Add support for vsphere-ova imagetype

The OVA type is also the default when checking VMWare now.
This commit is contained in:
Sanne Raymaekers 2023-07-03 15:16:26 +02:00
parent fa90e24989
commit f20686df4d
7 changed files with 219 additions and 112 deletions

View file

@ -36,6 +36,7 @@ const ImageLinkDirect = ({ imageId, isExpired, isInClonesTable }) => {
const fileExtensions = {
vsphere: '.vmdk',
'vsphere-ova': '.ova',
'guest-image': '.qcow2',
'image-installer': '.iso',
};

View file

@ -12,7 +12,8 @@ const Target = ({ composeId }) => {
aws: 'Amazon Web Services',
azure: 'Microsoft Azure',
gcp: 'Google Cloud Platform',
vsphere: 'VMWare',
vsphere: 'VMWare vSphere',
'vsphere-ova': 'VMWare vSphere',
'guest-image': 'Virtualization - Guest image',
'image-installer': 'Bare metal - Installer',
};