Skip to content

Commit

Permalink
Added a sample vagrant file for scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
vin0298 committed Sep 4, 2018
1 parent 04d2db7 commit c7d8b41
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions VagrantFileSample
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
config.vm.define "metric-collector" do |vm2|
vm2.vm.hostname = "metric-collector"
vm2.vm.box = "ubuntu/xenial64"

vm2.vm.network "private_network". type: "dhcp"

config.vm.network :forwarded_port, host: 5432, guest: 9300
vm2.vm.provider "virtualbox" do |vb|
vb.name = "metric-collector"
vb.gui = false
vb.memory = "1024"
end
end
end

0 comments on commit c7d8b41

Please sign in to comment.