diff --git a/Makefile b/Makefile index 84d7896f8..66f626137 100755 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -.PHONY: all build test +.PHONY: all build update start stop test host-build host-test godep all: build test @@ -25,6 +25,7 @@ host-build: go install ./ ./modeldb host-test: + etcdctl rm --recursive /contiv.io || true go test -v ./ ./modeldb go test -bench=. -run "Benchmark" diff --git a/Vagrantfile b/Vagrantfile index e9613fb79..0a8d5166f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -35,8 +35,8 @@ SCRIPT VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "contiv/ubuntu1504-netplugin" - config.vm.box_version = "0.3.1" + config.vm.box = "contiv/centos73" + config.vm.box_version = "0.10.0" num_nodes = 1 base_ip = "192.168.10." node_ips = num_nodes.times.collect { |n| base_ip + "#{n+10}" }