VMware Cloud Community
CyStudent
Contributor
Contributor
Jump to solution

OVA vs OVF with Import-vAPP

If I had a choice of file format for uploading VM files, which would be faster or more reliable between OVA and OVF?

Is there a benefit for using one over the other?

Use case:

Multiple VM uploads (25 unique vms) and deployment on vSphere 6.5 using vCentre

Reply
0 Kudos
1 Solution

Accepted Solutions
LucD
Leadership
Leadership
Jump to solution

In principle they are the same, the OVA is just another way of packaging the files.
From the VMware documentation "OVF is a file format that supports exchange of virtual appliances across products and platforms. OVA is a single file distribution of the same file package."

A single file OVA is a tar package of the OVF files.

I personally find a single OVA file easier to distribute and store.
A potential drawback could be the extra extraction step you need with an OVA file.


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

View solution in original post

Reply
0 Kudos
3 Replies
LucD
Leadership
Leadership
Jump to solution

In principle they are the same, the OVA is just another way of packaging the files.
From the VMware documentation "OVF is a file format that supports exchange of virtual appliances across products and platforms. OVA is a single file distribution of the same file package."

A single file OVA is a tar package of the OVF files.

I personally find a single OVA file easier to distribute and store.
A potential drawback could be the extra extraction step you need with an OVA file.


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

Reply
0 Kudos
CyStudent
Contributor
Contributor
Jump to solution

Hey Luc,

Thanks for your reply,

I was hoping that because the OVA format is a tar file that it would compress the data a bit. But I have found that using the defaults in ovftool the file size doesn't change any significant amount between the collection of files for ovf and the final ova file.

Either way it is much easier to deal with single ova files within the format of my PowerCLI script, so I will go with that.

Reply
0 Kudos
LucD
Leadership
Leadership
Jump to solution

One method that seems to reduce the size of an OVA file is to zero out the free space on the VMDK(s).
I'm not sure what the side effects might be, so, test and use at your own risk.


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

Reply
0 Kudos