-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathVagrantfile
More file actions
42 lines (32 loc) · 1.4 KB
/
Vagrantfile
File metadata and controls
42 lines (32 loc) · 1.4 KB
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
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
config.vm.hostname = "streammachine"
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "canonical-ubuntu-12.04"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"
config.omnibus.chef_version = :latest
# Assign this VM to a host-only network IP, allowing you to access it
# via the IP. Host-only networks can talk to the host machine as well as
# any other machines on the same network, but cannot be accessed (through this
# network interface) by any external networks.
config.vm.network :private_network, ip: "192.168.133.25"
config.berkshelf.enabled = true
config.vm.provision :chef_solo do |chef|
chef.data_bags_path = "./data_bags"
chef.json = {
nodejs: { install_method: "package" },
streammachine: { install_ffmpeg: true }
}
chef.run_list = [
"recipe[apt]",
"recipe[streammachine::elasticsearch]",
"recipe[streammachine]"
]
end
end