You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that the virtualbox-isostepCreateDisk function hard-codes the virtual disk format to VDI. This is good because I think I can now assume that the only reason I'm getting a .vmdk is that I'm exporting to .ovf.
Without exporting from virtualbox-iso/importing into virtualbox-ovf, how can I "chain" packer virtualbox builds, while preserving the vdi file format?
I have gathered minor pieces of this puzzle, such as:
I know I can skip_export but I don't see how I can import the machine with converting to ovf.
I know I can vboxmanage and vboxmanage-post any commands I want, but finding the right sequence eludes me. I could clone the .vmdk as a .vdi in any build stage, but I don't understand what builder can accept a .vdi as input.
This just feels like a lot of work to figure out how to do something quite simple. FWIW I implemented this same idea effortlessly using vsphere-iso/vsphere-clone builders - all I had to do was specify the disk size in the downstream vsphere-clone builder.
Anyone have any ideas or suggestions?
The text was updated successfully, but these errors were encountered:
you could go with specifying import_opts = "importtovdi" in your source, but that still leaves you with the problem that vboxmanage modifymedium expects you to know either the full path or the UUID of the created disk.
You might be able to guess/hardcode the full path though
Off the top of my head I think you want to use the keep_registered flag in the virtualbox-iso build and then use the virtualbox-vm builder rather than the virtualbox-ovf builder. You don’t even need to pass in the .vdi file, just reference the name given to the vm in the prior build by setting vm_name.
This issue was originally opened by @timblaktu as hashicorp/packer#10982. It was migrated here as a result of the Packer plugin split. The original body of the issue is below.
On our CI system, we've used a layered, template-chaining approach to building VMs, wherein we:
virtualbox-iso
virtualbox-ovf
virtualbox-ovf
Following this approach it does not initially appear possible to resize the virtual disk in the final
virtualbox-ovf
build stage because:virtualbox-iso
exports as .ovf/.ova, which more or less requires VMware's .vdmk formatvboxmanage modifymedium --resize
only supports .vdi/.vhd formatsI see that the
virtualbox-iso
stepCreateDisk function hard-codes the virtual disk format toVDI
. This is good because I think I can now assume that the only reason I'm getting a .vmdk is that I'm exporting to .ovf.Without exporting from
virtualbox-iso
/importing intovirtualbox-ovf
, how can I "chain" packer virtualbox builds, while preserving the vdi file format?I have gathered minor pieces of this puzzle, such as:
This just feels like a lot of work to figure out how to do something quite simple. FWIW I implemented this same idea effortlessly using
vsphere-iso
/vsphere-clone
builders - all I had to do was specify the disk size in the downstreamvsphere-clone
builder.Anyone have any ideas or suggestions?
The text was updated successfully, but these errors were encountered: