2013-12-22 18:44:43 -05:00
|
|
|
---
|
2018-04-13 22:48:19 -04:00
|
|
|
modeline: |
|
|
|
|
vim: set ft=pandoc:
|
2017-06-14 21:04:16 -04:00
|
|
|
description: |
|
2020-03-18 18:46:47 -04:00
|
|
|
This VirtualBox Packer builder is able to create VirtualBox virtual machines
|
|
|
|
and export them in the OVF format, starting from an existing OVF/OVA (exported
|
|
|
|
virtual machine image).
|
2015-07-22 22:31:00 -04:00
|
|
|
layout: docs
|
2020-03-18 18:46:47 -04:00
|
|
|
page_title: VirtualBox OVF/OVA - Builders
|
2020-04-02 19:39:47 -04:00
|
|
|
sidebar_title: OVF
|
2017-03-25 18:13:52 -04:00
|
|
|
---
|
2013-12-22 18:44:43 -05:00
|
|
|
|
|
|
|
# VirtualBox Builder (from an OVF/OVA)
|
|
|
|
|
|
|
|
Type: `virtualbox-ovf`
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
This VirtualBox Packer builder is able to create
|
|
|
|
[VirtualBox](https://www.virtualbox.org/) virtual machines and export them in
|
|
|
|
the OVF format, starting from an existing OVF/OVA (exported virtual machine
|
|
|
|
image).
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
When exporting from VirtualBox make sure to choose OVF Version 2, since Version
|
|
|
|
1 is not compatible and will generate errors like this:
|
2015-02-19 18:42:35 -05:00
|
|
|
|
2020-05-29 17:12:05 -04:00
|
|
|
```shell-session
|
2020-03-27 14:22:33 -04:00
|
|
|
==> virtualbox-ovf: Progress state: VBOX_E_FILE_ERROR
|
|
|
|
==> virtualbox-ovf: VBoxManage: error: Appliance read failed
|
|
|
|
==> virtualbox-ovf: VBoxManage: error: Error reading "source.ova": element "Section" has no "type" attribute, line 21
|
|
|
|
==> virtualbox-ovf: VBoxManage: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component Appliance, interface IAppliance
|
|
|
|
==> virtualbox-ovf: VBoxManage: error: Context: "int handleImportAppliance(HandlerArg*)" at line 304 of file VBoxManageAppliance.cpp
|
|
|
|
```
|
2015-02-19 18:42:35 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The builder builds a virtual machine by importing an existing OVF or OVA file.
|
|
|
|
It then boots this image, runs provisioners on this new VM, and exports that VM
|
|
|
|
to create the image. The imported machine is deleted prior to finishing the
|
|
|
|
build.
|
2013-12-22 18:44:43 -05:00
|
|
|
|
|
|
|
## Basic Example
|
|
|
|
|
|
|
|
Here is a basic example. This example is functional if you have an OVF matching
|
|
|
|
the settings here.
|
|
|
|
|
2020-03-12 10:05:08 -04:00
|
|
|
```json
|
2013-12-22 18:44:43 -05:00
|
|
|
{
|
|
|
|
"type": "virtualbox-ovf",
|
|
|
|
"source_path": "source.ovf",
|
|
|
|
"ssh_username": "packer",
|
|
|
|
"ssh_password": "packer",
|
|
|
|
"shutdown_command": "echo 'packer' | sudo -S shutdown -P now"
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
It is important to add a `shutdown_command`. By default Packer halts the virtual
|
|
|
|
machine and the file system may not be sync'd. Thus, changes made in a
|
2013-12-22 18:44:43 -05:00
|
|
|
provisioner might not be saved.
|
|
|
|
|
|
|
|
## Configuration Reference
|
|
|
|
|
2019-06-19 11:37:52 -04:00
|
|
|
There are many configuration options available for the builder. In addition to
|
|
|
|
the items listed here, you will want to look at the general configuration
|
|
|
|
references for [ISO](#iso-configuration),
|
|
|
|
[HTTP](#http-directory-configuration),
|
|
|
|
[Floppy](#floppy-configuration),
|
|
|
|
[Export](#export-configuration),
|
|
|
|
[Boot](#boot-configuration),
|
|
|
|
[Shutdown](#shutdown-configuration),
|
|
|
|
[Run](#run-configuration),
|
|
|
|
[Communicator](#communicator-configuration)
|
|
|
|
configuration references, which are
|
|
|
|
necessary for this build to succeed and can be found further down the page.
|
2015-06-23 17:44:57 -04:00
|
|
|
|
2014-05-04 13:47:40 -04:00
|
|
|
### Required:
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/ovf/Config-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/ovf/Config-not-required.mdx'
|
2020-03-24 19:48:37 -04:00
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/VBoxVersionConfig-not-required.mdx'
|
2020-03-24 19:48:37 -04:00
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/GuestAdditionsConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
2020-03-10 06:11:27 -04:00
|
|
|
### VBoxManage configuration
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/VBoxManageConfig-not-required.mdx'
|
2020-03-10 06:11:27 -04:00
|
|
|
|
2019-06-19 11:37:52 -04:00
|
|
|
### Http directory configuration
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'common/HTTPConfig.mdx'
|
2020-03-18 18:46:47 -04:00
|
|
|
|
2019-06-19 11:37:52 -04:00
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'common/HTTPConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
|
|
|
### Floppy configuration
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'common/FloppyConfig.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'common/FloppyConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
|
|
|
### Export configuration
|
|
|
|
|
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/ExportConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
|
|
|
### Output configuration
|
|
|
|
|
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/OutputConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
|
|
|
### Run configuration
|
|
|
|
|
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/RunConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
|
|
|
### Shutdown configuration
|
|
|
|
|
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/ShutdownConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
2019-06-20 06:22:26 -04:00
|
|
|
### Communicator configuration
|
|
|
|
|
|
|
|
#### Optional common fields:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'helper/communicator/Config-not-required.mdx'
|
2020-03-24 19:48:37 -04:00
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builder/virtualbox/common/CommConfig-not-required.mdx'
|
2019-06-20 06:22:26 -04:00
|
|
|
|
|
|
|
#### Optional SSH fields:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'helper/communicator/SSH-not-required.mdx'
|
2019-06-20 06:22:26 -04:00
|
|
|
|
|
|
|
#### Optional WinRM fields:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'helper/communicator/WinRM-not-required.mdx'
|
2019-06-20 06:22:26 -04:00
|
|
|
|
2019-06-19 11:37:52 -04:00
|
|
|
### Boot Configuration
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'common/bootcommand/BootConfig.mdx'
|
2016-08-02 16:58:04 -04:00
|
|
|
|
2018-04-13 19:48:26 -04:00
|
|
|
The boot command is sent to the VM through the `VBoxManage` utility in as few
|
2018-05-23 18:24:18 -04:00
|
|
|
invocations as possible. We send each character in groups of 25, with a default
|
|
|
|
delay of 100ms between groups. The delay alleviates issues with latency and CPU
|
2018-08-22 14:25:43 -04:00
|
|
|
contention. If you notice missing keys, you can tune this delay by specifying
|
|
|
|
"boot_keygroup_interval" in your Packer template, for example:
|
|
|
|
|
2020-03-12 10:05:08 -04:00
|
|
|
```json
|
2018-08-22 14:25:43 -04:00
|
|
|
{
|
|
|
|
"builders": [
|
|
|
|
{
|
|
|
|
"type": "virtualbox",
|
2019-06-19 11:37:52 -04:00
|
|
|
"boot_keygroup_interval": "500ms"
|
2018-08-22 14:25:43 -04:00
|
|
|
...
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-06-19 11:37:52 -04:00
|
|
|
#### Optional:
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'common/bootcommand/BootConfig-not-required.mdx'
|
2019-06-19 11:37:52 -04:00
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builders/boot-command.mdx'
|
2016-08-02 16:58:04 -04:00
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'builders/virtualbox-ssh-key-pair.mdx'
|
2019-02-06 16:03:40 -05:00
|
|
|
|
2016-08-02 16:58:04 -04:00
|
|
|
Example boot command. This is actually a working boot command used to start an
|
|
|
|
Ubuntu 12.04 installer:
|
|
|
|
|
2020-03-18 18:46:47 -04:00
|
|
|
```text
|
2016-08-02 16:58:04 -04:00
|
|
|
[
|
|
|
|
"<esc><esc><enter><wait>",
|
|
|
|
"/install/vmlinuz noapic ",
|
|
|
|
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
|
|
|
|
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
|
|
|
|
"hostname={{ .Name }} ",
|
|
|
|
"fb=false debconf/frontend=noninteractive ",
|
|
|
|
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
|
|
|
|
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
|
|
|
|
"initrd=/install/initrd.gz -- <enter>"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2017-10-12 01:58:03 -04:00
|
|
|
For more examples of various boot commands, see the sample projects from our
|
2020-03-31 17:40:07 -04:00
|
|
|
[community templates page](/community-tools#templates).
|
2017-10-12 01:58:03 -04:00
|
|
|
|
2013-12-22 18:44:43 -05:00
|
|
|
## Guest Additions
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Packer will automatically download the proper guest additions for the version of
|
|
|
|
VirtualBox that is running and upload those guest additions into the virtual
|
|
|
|
machine so that provisioners can easily install them.
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Packer downloads the guest additions from the official VirtualBox website, and
|
|
|
|
verifies the file with the official checksums released by VirtualBox.
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
After the virtual machine is up and the operating system is installed, Packer
|
|
|
|
uploads the guest additions into the virtual machine. The path where they are
|
|
|
|
uploaded is controllable by `guest_additions_path`, and defaults to
|
|
|
|
"VBoxGuestAdditions.iso". Without an absolute path, it is uploaded to the home
|
|
|
|
directory of the SSH user.
|
2013-12-22 18:44:43 -05:00
|
|
|
|
|
|
|
## VBoxManage Commands
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
In order to perform extra customization of the virtual machine, a template can
|
|
|
|
define extra calls to `VBoxManage` to perform.
|
2018-12-26 15:37:09 -05:00
|
|
|
[VBoxManage](https://www.virtualbox.org/manual/ch09.html) is the command-line
|
2015-07-22 22:31:00 -04:00
|
|
|
interface to VirtualBox where you can completely control VirtualBox. It can be
|
|
|
|
used to do things such as set RAM, CPUs, etc.
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Extra VBoxManage commands are defined in the template in the `vboxmanage`
|
|
|
|
section. An example is shown below that sets the memory and number of CPUs
|
|
|
|
within the virtual machine:
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2020-03-12 10:05:08 -04:00
|
|
|
```json
|
2013-12-22 18:44:43 -05:00
|
|
|
{
|
|
|
|
"vboxmanage": [
|
|
|
|
["modifyvm", "{{.Name}}", "--memory", "1024"],
|
|
|
|
["modifyvm", "{{.Name}}", "--cpus", "2"]
|
|
|
|
]
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The value of `vboxmanage` is an array of commands to execute. These commands are
|
|
|
|
executed in the order defined. So in the above example, the memory will be set
|
|
|
|
followed by the CPUs.
|
2013-12-22 18:44:43 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Each command itself is an array of strings, where each string is an argument to
|
|
|
|
`VBoxManage`. Each argument is treated as a [configuration
|
2020-03-31 17:40:07 -04:00
|
|
|
template](/docs/templates/engine). The only available
|
2015-07-22 22:31:00 -04:00
|
|
|
variable is `Name` which is replaced with the unique name of the VM, which is
|
|
|
|
required for many VBoxManage calls.
|