Last active
June 19, 2016 23:41
-
-
Save toff63/d11f525632bdcd0c26d88a92d6f3b236 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.synced_folder ".", "/vagrant", disabled: true | |
config.vm.define "master", primary: true do |master| | |
master.vm.box = "ubuntu-es" | |
master.vm.network "private_network", ip: "192.168.70.2" | |
end | |
config.vm.define "client" do |minion1| | |
minion1.vm.box = "ubuntu-es" | |
minion1.vm.network "private_network", ip: "192.168.70.3" | |
end | |
config.vm.define "data" do |minion2| | |
minion2.vm.box = "ubuntu-es" | |
minion2.vm.network "private_network", ip: "192.168.70.4" | |
end | |
config.vm.define "influxdb" do |influxdb| | |
influxdb.vm.box = "ubuntu/trusty64" | |
influxdb.vm.network "private_network", ip: "192.168.70.5" | |
end | |
config.vm.define "grafana" do |grafana| | |
grafana.vm.box = "ubuntu/trusty64" | |
grafana.vm.network "private_network", ip: "192.168.70.6" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment