diff options
Diffstat (limited to 'bootstrap/vagrant-onap/Vagrantfile')
-rw-r--r-- | bootstrap/vagrant-onap/Vagrantfile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bootstrap/vagrant-onap/Vagrantfile b/bootstrap/vagrant-onap/Vagrantfile index 31a9970a5..6d7900bf3 100644 --- a/bootstrap/vagrant-onap/Vagrantfile +++ b/bootstrap/vagrant-onap/Vagrantfile @@ -45,9 +45,13 @@ nodes = [ :macs => [], :cpus => 2, :cpu => "50", - :ram => 4 * 1024, + :ram => 6 * 1024, :groups => ["individual"], - :args => ["aai"] + :args => ["aai"], + :fwds => [ + { :guest => 8446, :host => 8446, :guest_ip => '192.168.50.6' }, + { :guest => 9446, :host => 9446, :guest_ip => '192.168.50.6' }, + ] }, { :name => "all-in-one", |