我知道我可以使用Packer以脚本方式创建自己的VM映像。如果我使用VirtualBox构建器,我可以选择以下两种方式之一:从头开始构建所有内容,或者在现有VM之上构建。
基本上,我想要实现的是建立在现有的Vagrant盒子之上(Ubuntu 15.04和Docker by Boxcutter)。
这是否可以使用Packer,如果是这样,怎么样?我在文档中找不到任何相关内容。样本始终仅引用OVF / OVA文件。任何提示?
答案 0 :(得分:5)
这实际上并不是Packer原生支持的工作流程,但您可以编写一个小的shell脚本来下载Vagrant框,导出OVF然后启动Packer的virtualbox-ovf构建器。
shell脚本(注意这是硬编码到1.1.0版本的盒子)
#!/bin/sh
vagrant init boxcutter/ubuntu1504-docker
vagrant up --provider virtualbox --no-provision
vagrant halt
rm -rf output-virtualbox-ovf
packer build packer.json
packer.json
{
"variables": {
"home": "{{env `HOME`}}"
},
"builders": [{
"type": "virtualbox-ovf",
"source_path": "{{user `home`}}/.vagrant.d/boxes/boxcutter-VAGRANTSLASH-ubuntu1504-docker/1.1.0/virtualbox/box.ovf",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_wait_timeout": "30s",
"shutdown_command": "echo 'packer' | sudo -S shutdown -P now"
}],
"provisioners": [{
"type": "shell",
"inline": ["echo 'my additional provisioning steps'"]
}],
"post-processors": [{
"type": "vagrant",
"keep_input_artifact": true,
"output": "box/modified-boxcutter-VAGRANTSLASH-ubuntu1504-docker.box"
}]
}
这将创建一个在box/modified-boxcutter-VAGRANTSLASH-ubuntu1504-docker.box
打包的新Vagrant框。