From 000de533553068dae03f9e83bd285b9059b63ca3 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Thu, 31 Aug 2017 17:28:10 -0500 Subject: Add MultCloud/MultiVIM support These changes allows to provide MultiCloud support. Change-Id: Ic420817df1471077f71290a926fd7e509c052d75 Signed-off-by: Victor Morales Issue-Id: MULTICLOUD-53 --- bootstrap/vagrant-onap/Vagrantfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'bootstrap/vagrant-onap/Vagrantfile') diff --git a/bootstrap/vagrant-onap/Vagrantfile b/bootstrap/vagrant-onap/Vagrantfile index 5eb22d71f..ff3590882 100644 --- a/bootstrap/vagrant-onap/Vagrantfile +++ b/bootstrap/vagrant-onap/Vagrantfile @@ -352,6 +352,19 @@ Vagrant.configure("2") do |config| end end + config.vm.define :multicloud do |multicloud| + multicloud.vm.hostname = 'multicloud' + multicloud.vm.network :private_network, ip: '192.168.50.16' + multicloud.vm.provider "openstack" do |v| + v.server_name = 'multicloud' + end + multicloud.vm.provision 'shell' do |s| + s.path = 'vagrant_utils/postinstall.sh' + s.args = ['multicloud'] + s.env = conf + end + end + when 'testing' config.vm.define :testing do |testing| -- cgit 1.2.3-korg