{\n \"builders\": [\n {\n ...\n }\n ],\n \"provisioners\": [\n {\n ...\n }\n ],\n \"post-processors\": [\n {\n ...\n }\n ]\n}\n\n
We're interested specifically in the Virtualbox builder. This builder accepts a type called \"virtualbox-ovf\" that takes an OVA as its input. Here's the builder that I used.
\n\n\"builders\": [\n {\n \"type\": \"virtualbox-ovf\",\n \"source_path\": \"BIGIP-11.6.0.0.0.401.LTM_1SLOT-ide.ova\",\n \"ssh_username\": \"root\",\n \"ssh_password\": \"default\",\n \"ssh_wait_timeout\": \"30000s\",\n \"headless\": \"false\",\n \"shutdown_command\": \"shutdown -h now\",\n \"import_flags\": [\"--eula\", \"accept\"],\n \"guest_additions_mode\": \"disable\",\n \"vm_name\": \"BIGIP-11.6.0.0.0.401.LTM_1SLOT-ide\",\n \"vboxmanage\": [\n [\"modifyvm\",\"{{.Name}}\",\"--memory\",\"4096\"],\n [\"modifyvm\",\"{{.Name}}\",\"--cpus\",\"2\"],\n [\"modifyvm\",\"{{.Name}}\",\"--nic1\",\"NAT\"]\n ]\n }\n ]\n\n
There are several things to note in this builder.
\n\n\"provisioners\": [\n {\n \"type\": \"shell\",\n \"inline\": [\n \"mount -o remount,rw /dev/mapper/vg--db--hda-set.1._usr /usr\",\n \"curl -o /tmp/sudo-1.8.16-1.el5.x86_64.rpm http://repo.centos.org/sudo-1.8.16-1.el5.x86_64.rpm\",\n \"rpm -Uvh /tmp/sudo-1.8.16-1.el5.x86_64.rpm\",\n\n \"tmsh create auth user vagrant password vagrant partition-access add { all-partitions { role admin } } shell bash\",\n \"echo 'vagrant ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/vagrant\",\n \"mkdir -p /home/vagrant/.ssh\",\n \"chmod 0700 /home/vagrant/.ssh\",\n \"curl --insecure -L -o /home/vagrant/.ssh/authorized_keys https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub\",\n \"chmod 0600 /home/vagrant/.ssh/authorized_keys\",\n \"chown -R vagrant /home/vagrant/.ssh\",\n \"tmsh save sys config\"\n ]\n }\n]\n\n
We are specifically interested in creating a Vagrant box, so we run the output through the vagrant post-processor to give us one.
\n\n\"post-processors\": [\n {\n \"type\": \"vagrant\",\n \"compression_level\": 1,\n \"output\": \"BIGIP-11.6.0.0.0.401.LTM_1SLOT-ide.box\"\n }\n ],\n\n
{\n \"builders\": [\n {\n ...\n }\n ],\n \"provisioners\": [\n {\n ...\n }\n ],\n \"post-processors\": [\n {\n ...\n }\n ]\n}\n\n
We're interested specifically in the Virtualbox builder. This builder accepts a type called \"virtualbox-ovf\" that takes an OVA as its input. Here's the builder that I used.
\n\n\"builders\": [\n {\n \"type\": \"virtualbox-ovf\",\n \"source_path\": \"BIGIP-11.6.0.0.0.401.LTM_1SLOT-ide.ova\",\n \"ssh_username\": \"root\",\n \"ssh_password\": \"default\",\n \"ssh_wait_timeout\": \"30000s\",\n \"headless\": \"false\",\n \"shutdown_command\": \"shutdown -h now\",\n \"import_flags\": [\"--eula\", \"accept\"],\n \"guest_additions_mode\": \"disable\",\n \"vm_name\": \"BIGIP-11.6.0.0.0.401.LTM_1SLOT-ide\",\n \"vboxmanage\": [\n [\"modifyvm\",\"{{.Name}}\",\"--memory\",\"4096\"],\n [\"modifyvm\",\"{{.Name}}\",\"--cpus\",\"2\"],\n [\"modifyvm\",\"{{.Name}}\",\"--nic1\",\"NAT\"]\n ]\n }\n ]\n\n
There are several things to note in this builder.
\n\nssh_wait_timeout
. BIG-IP takes longer to boot than the standard Vagrant SSH wait timeout, so I override it here to account for that.TCP connection to SSH ip/port failed: dial tcp 127.0.0.1:3819: getsockopt: connection refused
\"provisioners\": [\n {\n \"type\": \"shell\",\n \"inline\": [\n \"mount -o remount,rw /dev/mapper/vg--db--hda-set.1._usr /usr\",\n \"curl -o /tmp/sudo-1.8.16-1.el5.x86_64.rpm http://repo.centos.org/sudo-1.8.16-1.el5.x86_64.rpm\",\n \"rpm -Uvh /tmp/sudo-1.8.16-1.el5.x86_64.rpm\",\n\n \"tmsh create auth user vagrant password vagrant partition-access add { all-partitions { role admin } } shell bash\",\n \"echo 'vagrant ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/vagrant\",\n \"mkdir -p /home/vagrant/.ssh\",\n \"chmod 0700 /home/vagrant/.ssh\",\n \"curl --insecure -L -o /home/vagrant/.ssh/authorized_keys https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub\",\n \"chmod 0600 /home/vagrant/.ssh/authorized_keys\",\n \"chown -R vagrant /home/vagrant/.ssh\",\n \"tmsh save sys config\"\n ]\n }\n]\n\n
We are specifically interested in creating a Vagrant box, so we run the output through the vagrant post-processor to give us one.
\n\n\"post-processors\": [\n {\n \"type\": \"vagrant\",\n \"compression_level\": 1,\n \"output\": \"BIGIP-11.6.0.0.0.401.LTM_1SLOT-ide.box\"\n }\n ],\n\n
PACKER_LOG=1 packer build template.json