-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
89 lines (68 loc) · 2.42 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# -*- mode: ruby -*-
# vi: set ft=ruby :
# set hostname, install puppet
$script = <<SCRIPT
apt-get update
echo 'openresty-pypi.vagrant' | tee /etc/hostname
hostname $(cat /etc/hostname)
apt-get install -y puppet
SCRIPT
# activate virtualenv, install pip dependencies
$script2 = <<SCRIPT
cd /vagrant
virtualenv ./envvagrant
. envvagrant/bin/activate
pip install -r requirements.txt
pip install -r requirements_matplotlib.txt
SCRIPT
Vagrant.configure("2") do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
# bootstrap
config.vm.define :deploy do |deploy_config|
config.vm.provision :shell, :inline => $script
end
# Puppet bootstrap - update apt cache
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "bootstrap/apt-update.pp"
end
# Puppet bootstrap - build essentials
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "bootstrap/build-essentials.pp"
end
config.vm.define :deploy do |deploy_config|
deploy_config.vm.provider :aws do |aws|
aws.access_key_id = ENV['AWS_ACCESS_KEY_ID']
aws.secret_access_key = ENV['AWS_SECRET_ACCESS_KEY']
aws.keypair_name = "bitly-breaking-stories"
aws.ssh_private_key_path = ENV['AWS_SOMA_PRIVATE_KEY_PATH']
aws.region = 'eu-west-1'
aws.ami = "ami-e7b6b393"
aws.ssh_username = "ubuntu"
aws.security_groups = ["bitly-breaking-stories-default", "mongo"]
aws.tags = { :Name => 'openresty-pypi' }
end
end
config.vm.define :develop do |develop_config|
develop_config.vm.network :private_network, ip: "173.16.1.2"
develop_config.vm.network :forwarded_port, guest: 8080, host: 8080
develop_config.vm.synced_folder ".", "/vagrant", :nfs => true
# Puppet bootstrap - install augeas
develop_config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "bootstrap/vagrant-puppet.pp"
end
end
# Puppet stand alone.
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "site.pp"
end
config.vm.provision :shell, :inline => $script2
end