diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-06-19 22:46:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-06-19 22:46:10 +0000 |
commit | c1963d4331fce447d93131d731e1f261c175de87 (patch) | |
tree | 9b0e20ecda60bba4c4e90adad039b7546788463f /kud/hosting_providers/vagrant/Vagrantfile | |
parent | d5a34e001fe894b7f90d17d4a53dda53d2e8ef81 (diff) | |
parent | 8f5b4cdbe151b509fc1309e1bc4fc19b4bc5950c (diff) |
Merge "Make ovn-central network interface configurable"
Diffstat (limited to 'kud/hosting_providers/vagrant/Vagrantfile')
-rw-r--r-- | kud/hosting_providers/vagrant/Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kud/hosting_providers/vagrant/Vagrantfile b/kud/hosting_providers/vagrant/Vagrantfile index d068b84a..2d1b5ab4 100644 --- a/kud/hosting_providers/vagrant/Vagrantfile +++ b/kud/hosting_providers/vagrant/Vagrantfile @@ -120,7 +120,7 @@ Vagrant.configure("2") do |config| installer.vm.network :private_network, :ip => "10.10.10.2", :type => :static installer.vm.synced_folder '../../../', '/home/vagrant/multicloud-k8s/', type: sync_type installer.vm.provision 'shell', privileged: false do |sh| - sh.env = {'KUD_PLUGIN_ENABLED': 'false'} + sh.env = {'KUD_PLUGIN_ENABLED': 'false', 'OVN_CENTRAL_INTERFACE': 'eth1'} sh.inline = <<-SHELL cp /vagrant/insecure_keys/key.pub /home/vagrant/.ssh/id_rsa.pub cp /vagrant/insecure_keys/key /home/vagrant/.ssh/id_rsa |