diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-09-01 16:49:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-01 16:49:09 +0000 |
commit | b49dc6b5ba9b8c893dcdbbed296a6633cefbf906 (patch) | |
tree | 56cf26ce216eee5b36f4161ed91e82dad8835441 /bootstrap/vagrant-onap/Vagrantfile | |
parent | 549761b03ff128fc2472715c57d4afb6ddb6bea4 (diff) | |
parent | 000de533553068dae03f9e83bd285b9059b63ca3 (diff) |
Merge "Add MultCloud/MultiVIM support"
Diffstat (limited to 'bootstrap/vagrant-onap/Vagrantfile')
-rw-r--r-- | bootstrap/vagrant-onap/Vagrantfile | 13 |
1 files changed, 13 insertions, 0 deletions
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| |