diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-04 14:34:08 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-04 14:34:08 -0300 |
commit | 7954b5ce0c72c03493c3bff98f3c6ea9f1d665d0 (patch) | |
tree | 8cd7fb03c6023af86f05b0ae19d5022d7dc53991 /Vagrantfile | |
parent | 724c2a62eeb5beac50e5d4837e9b4f1c28f7bd14 (diff) | |
download | puppet-bootstrap-7954b5ce0c72c03493c3bff98f3c6ea9f1d665d0.tar.gz puppet-bootstrap-7954b5ce0c72c03493c3bff98f3c6ea9f1d665d0.tar.bz2 |
Cleaning node templates, storage and test nodes on Vagrant, TODO update
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 12 |
1 files changed, 12 insertions, 0 deletions
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 |