aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/tests/21_slave_scalability/Vagrantfile
diff options
context:
space:
mode:
authorasteroide <thomas.duval@orange.com>2017-07-26 08:55:58 +0200
committerasteroide <thomas.duval@orange.com>2017-07-26 08:55:58 +0200
commit00bfa61e3a3cd0fef6038ba297b92f6bc3f6b6c7 (patch)
treefe81ee751616e57da745b90900ad3e43d150c2a1 /moonv4/tests/21_slave_scalability/Vagrantfile
parentc6cbfea94f51536b11e46bfe7053e1fb96c0a968 (diff)
Delete test data from repository.
Change-Id: Ie3da4f813a50df34b64e2d2a7d26e737720c98a6
Diffstat (limited to 'moonv4/tests/21_slave_scalability/Vagrantfile')
-rw-r--r--moonv4/tests/21_slave_scalability/Vagrantfile32
1 files changed, 0 insertions, 32 deletions
diff --git a/moonv4/tests/21_slave_scalability/Vagrantfile b/moonv4/tests/21_slave_scalability/Vagrantfile
deleted file mode 100644
index dee19395..00000000
--- a/moonv4/tests/21_slave_scalability/Vagrantfile
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
- config.vm.box = "ubuntu/xenial64"
-
- # Create a private network, which allows host-only access to the machine
- # using a specific IP.
- # config.vm.network "private_network", ip: "192.168.33.10"
-
- config.vm.provider "virtualbox" do |vb|
- # # Display the VirtualBox GUI when booting the machine
- # vb.gui = true
- #
- # # Customize the amount of memory on the VM:
- vb.memory = "4096"
- vb.cpus = "1"
- end
-
- config.vm.define "master" do |master|
- master.vm.box = "ubuntu/xenial64"
- master.vm.provision "shell", path: "master.sh"
- master.vm.network "private_network", ip: "192.168.33.10", virtualbox__intnet: "internal"
- end
-
- config.vm.define "slave1" do |slave1|
- slave1.vm.box = "ubuntu/xenial64"
- slave1.vm.provision "shell", path: "slave.sh slave1"
- slave1.vm.network "private_network", ip: "192.168.33.11", virtualbox__intnet: "internal"
- end
-
-end