diff options
Diffstat (limited to 'bootstrap/vagrant-onap/Vagrantfile')
-rw-r--r-- | bootstrap/vagrant-onap/Vagrantfile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bootstrap/vagrant-onap/Vagrantfile b/bootstrap/vagrant-onap/Vagrantfile index d70cf8f8a..2490b1c75 100644 --- a/bootstrap/vagrant-onap/Vagrantfile +++ b/bootstrap/vagrant-onap/Vagrantfile @@ -212,6 +212,16 @@ nodes = [ :args => ['vid'], }, { + :name => "vnfsdk", + :ips => ['10.252.0.16', "192.168.50.16"], + :macs => [], + :cpus => 2, + :cpu => "50", + :ram => 4 * 1024, + :groups => ["individual"], + :args => ['vnfsdk'], + }, + { :name => "vvp", :ips => ['10.252.0.17', "192.168.50.17"], :macs => [], @@ -220,7 +230,7 @@ nodes = [ :ram => 4 * 1024, :groups => ["individual"], :args => ['vvp'], - }, + } ] run_path = 'vagrant_utils/postinstall.sh' |