aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-04-23 01:05:02 -0700
committerVictor Morales <victor.morales@intel.com>2018-04-23 01:05:02 -0700
commit53c52795b9008893dbf5739dfdafbaf100fa81ef (patch)
tree96702e7650d0b1f9099e350bebbbdfa888681438 /Vagrantfile
parent8be83219fd8fc9983ac90a700b25c35555f45c49 (diff)
Update OOM script
The instructions to deploy ONAP thru OOM tool has been changed, it's using Helm Charts for performing the deployment. This change reflects that change. Given that using Rancher adds an additional layer to the deployment, it was provided an alternative method to deploy Kubernetes via kubespray. This tool provides a production ready k8s deployment. Change-Id: Ied3f5fc9e5c97b4c0f8e623b9d6f3c4f52fc822e Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: INT-478
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 9ff0340..7f379ed 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -171,6 +171,7 @@ nodes = [
:fwds => [
{ :guest => 8880, :host => 8880, :guest_ip => '192.168.50.21' },
{ :guest => 8989, :host => 8989, :guest_ip => '192.168.50.21' },
+ { :guest => 8080, :host => 8888, :guest_ip => '192.168.50.21' },
]
},
{
@@ -487,7 +488,7 @@ Vagrant.configure("2") do |config|
end
# Set Box type
- if "openstack" == node[:name]
+ if ["openstack", "oom"].include? node[:name]
box = {
:virtualbox => 'ubuntu/xenial64',
:libvirt => 'elastic/ubuntu-16.04-x86_64'