forked from deis/deis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
40 lines (32 loc) · 1.95 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
Vagrant.configure("2") do |config|
config.vm.box = "deis-node"
# This is a preloaded Deis Ubuntu 12.04 Precise box. It's about 1GB
config.vm.box_url = "https://s3-us-west-2.amazonaws.com/opdemand/deis-node.box"
# Avahi-daemon will broadcast the server's address as deis-controller.local
config.vm.host_name = "deis-controller"
# IP will be associated to 'deis-controller.local' using avahi-daemon
config.vm.network :private_network, ip: "192.168.61.100"
# The Deis Controller requires at least 2G of RAM to install.
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "2048"]
end
# 'deis provider:discover' detects the host machine's user and IP address, however, that command cannot
# be guareteed to run inside the deis codebase. Therefore we can't use that opportunity to discover
# the path of the codebase on the host machine. Therefore we do it now as this Vagrantfile has to exist
# inside the codebase.
nodes_dir = File.dirname(__FILE__) + '/contrib/vagrant/nodes'
config.vm.provision :shell, inline: <<-SCRIPT
# Avahi-daemon broadcasts the machine's hostname to local DNS.
# Therefore 'deis-controller.local' in this case.
sudo service avahi-daemon restart
# Make a record of where the deis code base is on the host machine
echo "#{nodes_dir}" > /home/vagrant/.host_nodes_dir
SCRIPT
end
# If you want to do some funky custom stuff to your box, but don't want those things tracked by git,
# add a Vagrantfile.local and it will be included. You can use the exact same syntax as above. For
# example you could mount your dev version of deis onto the VM and hack live on the VM;
# `config.vm.share_folder "deis", "/opt/deis", "~/myworkspace/deis"
# Or if you're low on RAM you can boot the VM with less RAM. Note that at least 1GB is needed for
# installation, but you may be able to get away with 512MB once everything is installed.
load "Vagrantfile.local" if File.exists? "Vagrantfile.local"