forked from chef-boneyard/omnibus-chef-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
75 lines (59 loc) · 1.91 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# -*- mode: ruby -*-
# vi: set ft=ruby :
require 'vagrant'
if Vagrant::VERSION < '1.2.1'
raise 'The Omnibus Build Lab is only compatible with Vagrant 1.2.1+'
end
host_project_path = File.expand_path('..', __FILE__)
guest_project_path = "/home/vagrant/#{File.basename(host_project_path)}"
project_name = 'chef-server'
Vagrant.configure('2') do |config|
config.vm.hostname = "#{project_name}-omnibus-build-lab"
%w{
ubuntu-10.04
ubuntu-11.04
ubuntu-12.04
centos-5.10
centos-6.5
}.each do |platform|
config.vm.define platform do |c|
c.vm.box = "opscode-#{platform}"
c.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_#{platform}_chef-provisionerless.box"
end
end
config.vm.provider :virtualbox do |vb|
# Give enough horsepower to build without taking all day.
vb.customize [
'modifyvm', :id,
'--memory', '1536',
'--cpus', '2'
]
end
# Ensure a recent version of the Chef Omnibus packages are installed
config.omnibus.chef_version = '11.6.2'
# Enable the berkshelf-vagrant plugin
config.berkshelf.enabled = true
config.ssh.forward_agent = true
host_project_path = File.expand_path('..', __FILE__)
guest_project_path = "/home/vagrant/#{File.basename(host_project_path)}"
config.vm.synced_folder host_project_path, guest_project_path
# prepare VM to be an Omnibus builder
config.vm.provision :chef_solo do |chef|
chef.json = {
'omnibus' => {
'build_user' => 'vagrant',
'build_dir' => guest_project_path,
'install_dir' => "/opt/#{project_name}"
}
}
chef.run_list = [
'recipe[omnibus::default]'
]
end
config.vm.provision :shell, :inline => <<-OMNIBUS_BUILD
export PATH=/usr/local/bin:$PATH
cd #{guest_project_path}
su vagrant -c "bundle install --binstubs"
su vagrant -c "bin/omnibus build project #{project_name}"
OMNIBUS_BUILD
end