Vagrant and Virtualbox (Wiki: Tech Talk)
Part of the information is taken from the book "Deploying with JRuby" from Joe Kutner if you are new to deploying with JRuby i recommend this book.
We can install vagrant and virtualbox directly with apt on ubuntu:
apt-get install vagrant virtualbox
I had the problem that vagrant did not work for my user after this steps cause of rvm, so i used:
gem install vagrant
Install a precise box
vagrant box add base-jruby http://files.vagrantup.com/precise64.box
Initialize (creates a Vagrantfile)
vagrant init base-jruby
We can now start the server with
vagrant up
We can now connect to the box with
vagrant ssh
Provision with Puppet
Add or uncomment this in the Vagrantfile
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.manifest_file = "site.pp"
puppet.module_path = "puppet/modules"
end
For this we need to add a file called site.pp under puppet/manifests (relative path, I put everything under a folder called vagrant to have it isolated)
Info
Wikis: 2Wiki Seiten: 6