VTWO-14496 : start machines configuration

This commit is contained in:
mbenabda
2019-06-20 16:44:59 +02:00
parent ce236f216f
commit e577b6e5ac
6 changed files with 68 additions and 2 deletions

4
Vagrantfile vendored
View File

@@ -1,5 +1,6 @@
# Doc at https://docs.vagrantup.com
# Boxes at https://vagrantcloud.com/search
require 'open-uri'
Vagrant.require_version ">= 2.2.4"
@@ -7,8 +8,9 @@ Vagrant.configure("2") do |config|
config.vm.box = "debian/stretch64"
config.vm.box_version = "= 9.9.1"
# greet from every configured VM, revealing its hostname
config.vm.provision "shell", inline: "echo Hello from \$HOSTNAME"
config.vm.define "master-node" do |node|
node.vm.hostname = "master-node"