fb1e946853
Changed default database to sqlite Changed how solar_db config is defined Removed lupa from test-requirements Removed riak from requirements Testr uses :memory: sqlite Closes-Bug: #1526286 Change-Id: I709d19a192f800e9a67d9c7657f286ff0b343053 |
||
---|---|---|
.. | ||
http | ||
playbooks | ||
vagrant_plugins | ||
ansible.cfg | ||
build-image.yaml | ||
packer.yaml | ||
README.md | ||
solar-master.json |
Solar image building
To build for a Virtualbox, install Packer (https://www.packer.io/):
cp vagrant-settings.yaml_defaults vagrant-settings.yaml
sed -i 's/master_image:.*$/master_image: solar-master/g' ./vagrant-settings.yaml
sed -i 's/slaves_image:.*$/slaves_image: solar-master/g' ./vagrant-settings.yaml
cd bootstrap
packer build -only=virtualbox-iso solar-master.json
mv solar-master-virtualbox.box ../solar-master.box
cd ..
vagrant box add solar-master solar-master.box --provider virtualbox
vagrant up --provider virtualbox
To build for a libvirt, replace the following commands:
packer build -only=qemu solar-master.json
mv solar-master-libvirt.box ../solar-master.box
cd ..
vagrant box add solar-master solar-master.box --provider libvirt
vagrant up --provider libvirt
If Vagrant throws error about vboxsf
try this:
vagrant plugin install vagrant-vbguest
(see https://github.com/shiguredo/packer-templates/issues/16).
If you're rebuilding the same box, make sure Vagrant reimports it:
vagrant box remove solar-master
Note that you can also set PACKER_LOG=debug
and/or VAGRANT_LOG=debug
the shell environment variables to get more information.