From 7954b5ce0c72c03493c3bff98f3c6ea9f1d665d0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 4 Mar 2014 14:34:08 -0300 Subject: Cleaning node templates, storage and test nodes on Vagrant, TODO update --- Vagrantfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Vagrantfile') diff --git a/Vagrantfile b/Vagrantfile index 5a15585..2ea663a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -43,6 +43,18 @@ Vagrant::Config.run do |config| web_config.vm.network :hostonly, "192.168.50.104" end + # Define a Storage VM + config.vm.define :storage do |storage_config| + storage_config.vm.box = "storage" + storage_config.vm.network :hostonly, "192.168.50.105" + end + + # Define a Test VM + config.vm.define :test do |test_config| + test_config.vm.box = "test" + test_config.vm.network :hostonly, "192.168.50.106" + end + # Share hiera configuration. config.vm.share_folder "hiera", "/etc/puppet/hiera", "puppet/hiera", create: true end -- cgit v1.2.3