diff options
author | Victor Morales <victor.morales@intel.com> | 2018-10-23 03:47:50 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2018-11-15 03:31:29 -0800 |
commit | 1b76b8fada122365b9adf99cc305721cc114d30a (patch) | |
tree | 2a7197aab0cb20cf14e397d0fd7465a0c94574cf /vagrant/Vagrantfile | |
parent | daf3a00798ee77e469cd89cb16ade818c50968f9 (diff) |
Change deployment approach
This change pretends to isolate the deployment script and make it
consumable externally.
Change-Id: I7b9859fcc55e03e706aa54d4bc632ed15b4313be
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: MULTICLOUD-408
Diffstat (limited to 'vagrant/Vagrantfile')
-rw-r--r-- | vagrant/Vagrantfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index 735e750e..c4d35368 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -116,8 +116,8 @@ Vagrant.configure("2") do |config| installer.vm.network :private_network, :ip => "10.10.10.2", :type => :static installer.vm.synced_folder '../', '/root/go/src/k8-plugin-multicloud/', type: sync_type installer.vm.provision 'shell' do |sh| - sh.path = "installer.sh" - sh.args = ['-p', '-v', '-w', '/root/go/src/k8-plugin-multicloud/vagrant'] + sh.env = {'KRD_ENABLE_TESTS': 'false'} + sh.path = "main.sh" end end end |