Created
May 20, 2017 07:39
-
-
Save vignesh-v3/22309c6fa6d6a9333ce18138391c404a to your computer and use it in GitHub Desktop.
vagrant multivm
This file contains 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
BOX_IMAGE = "bento/centos-6.7" | |
NODE_COUNT = 2 | |
Vagrant.configure("2") do |config| | |
config.vm.define "master" do |subconfig| | |
subconfig.vm.box = BOX_IMAGE | |
end | |
(1..NODE_COUNT).each do |i| | |
config.vm.define "node#{i}" do |subconfig| | |
subconfig.vm.box = BOX_IMAGE | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment