blob: fbf0feec9040aa48cc4f9ed9f5814b55643a38f3 [file] [log] [blame]
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -05001# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
4Vagrant.configure(2) do |config|
5
6 if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
Rouzbahan Rashidi-Tabrizi4b9fdf42017-02-17 13:39:42 -05007 config.vm.synced_folder "../../..", "/cord", mount_options: ["dmode=700,fmode=600"]
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -05008 else
Rouzbahan Rashidi-Tabrizi4b9fdf42017-02-17 13:39:42 -05009 config.vm.synced_folder "../../..", "/cord"
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -050010 end
11
Rouzbahan Rashidi-Tabrizi54e3e292016-11-29 14:32:50 -050012 config.vm.define "voltha-base" do |d|
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -050013 d.ssh.forward_agent = true
Rouzbahan Rashidi-Tabrizif11d1ed2017-01-27 11:58:57 -050014 d.vm.box = "v0rtex/xenial64"
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -050015 d.vm.hostname = "voltha"
16 d.vm.network "private_network", ip: "10.100.198.220"
17 #d.vm.network "public_network"
18 d.vm.provision :shell, path: "../ansible/scripts/bootstrap_ansible.sh"
Rouzbahan Rashidi-Tabrizi4b9fdf42017-02-17 13:39:42 -050019 d.vm.provision :shell, inline: "PYTHONUNBUFFERED=1 ansible-playbook /cord/incubator/voltha/ansible/voltha.yml -c local"
20 d.vm.provision :shell, inline: "cd /cord/incubator/voltha/vagrant-base && make install-protoc"
Rouzbahan Rashidi-Tabrizi663f01a2016-11-17 11:39:02 -050021 #d.vm.provision :shell, path: "./test_script.sh"
22 d.vm.provider "virtualbox" do |v|
23 v.name = "voltha-base"
24 v.memory = 4096
25 end
26 end
27
28 config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"
29
30 if Vagrant.has_plugin?("vagrant-cachier")
31 config.cache.scope = :box
32 end
33
34end