f510d6561c
- installs Octavia service in OSA - adds a test which installs Octavia (but uses noop to work around gate limitations) Co-Authored-By: German Eichberger <German.eichberger@rackspace.com> Change-Id: Idb419a4ca5daa311d39c90eda5f83412ccf576ad
13 lines
260 B
Ruby
13 lines
260 B
Ruby
Vagrant.configure(2) do |config|
|
|
config.vm.box = "ubuntu/xenial64"
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = 2048
|
|
v.cpus = 2
|
|
end
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
sudo su -
|
|
cd /vagrant
|
|
./run_tests.sh
|
|
SHELL
|
|
end
|