-
-
Save sharmaansh21/9b44ae0a0588f7f263a3bcd55346b087 to your computer and use it in GitHub Desktop.
vagrant multi machine centos
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
boxes = [ | |
{ | |
name: "server1.local", | |
eth1: "192.168.0.101", | |
mem: 1024, | |
cpu: 1 | |
}, | |
{ | |
name: "server2.local", | |
eth1: "192.168.0.102", | |
mem: 1024, | |
cpu: 1 | |
} | |
] | |
Vagrant.configure(2) do |config| | |
config.vm.box = "nrel/CentOS-6.5-x86_64" | |
boxes.each do |box| | |
config.vm.define box[:name] do |srv| | |
srv.vm.hostname = box[:name] | |
srv.vm.network :private_network, ip: box[:eth1] | |
srv.vm.provider :virtualbox do |vb| | |
vb.memory = box[:mem] | |
vb.cpus = box[:cpu] | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment