forked from gramos/cf-vagrant-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
25 lines (19 loc) · 669 Bytes
/
Copy pathVagrantfile
File metadata and controls
25 lines (19 loc) · 669 Bytes
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
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ci_with_warden_prereqs"
config.vm.box_url = "~/boxes/ci_with_warden_prereqs.box"
config.ssh.username = "travis"
config.vm.define "dea_test_vm"
config.vm.network :forwarded_port, guest: 80, host: 8181 # API cloud_controller_ng
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "2048"]
end
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = ["./chef"]
chef.provisioning_path = "/var/vagrant-chef"
chef.log_level = :debug
chef.add_recipe "apt"
chef.add_recipe "git"
end
end