diff options
author | Victor Morales <victor.morales@intel.com> | 2017-10-25 16:01:58 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-10-25 16:01:58 -0700 |
commit | d3cbcf2b5498cf7facd474ba30a45bb5498fe5d1 (patch) | |
tree | b72e6a71955afdffabe3f10f5cb6204d8ea837a1 /bootstrap/vagrant-onap/Vagrantfile | |
parent | b9be518a15e461d02684ee1d85b93a9fa9d99738 (diff) |
Add VVP support in Vagrant ONAP
This commit provides a capability to provision a VVP development
environment.
Change-Id: Ic8623095194ce13420c8dc71da1dd1d84ef010fc
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-Id: INT-303
Diffstat (limited to 'bootstrap/vagrant-onap/Vagrantfile')
-rw-r--r-- | bootstrap/vagrant-onap/Vagrantfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bootstrap/vagrant-onap/Vagrantfile b/bootstrap/vagrant-onap/Vagrantfile index dc8b34768..d70cf8f8a 100644 --- a/bootstrap/vagrant-onap/Vagrantfile +++ b/bootstrap/vagrant-onap/Vagrantfile @@ -211,6 +211,16 @@ nodes = [ :groups => ["individual"], :args => ['vid'], }, + { + :name => "vvp", + :ips => ['10.252.0.17', "192.168.50.17"], + :macs => [], + :cpus => 2, + :cpu => "50", + :ram => 4 * 1024, + :groups => ["individual"], + :args => ['vvp'], + }, ] run_path = 'vagrant_utils/postinstall.sh' |