We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e79f64 commit 405471eCopy full SHA for 405471e
Makefile
@@ -1,5 +1,5 @@
1
2
-.PHONY: all build test
+.PHONY: all build update start stop test host-build host-test godep
3
4
all: build test
5
@@ -25,6 +25,7 @@ host-build:
25
go install ./ ./modeldb
26
27
host-test:
28
+ etcdctl rm --recursive /contiv.io || true
29
go test -v ./ ./modeldb
30
go test -bench=. -run "Benchmark"
31
Vagrantfile
@@ -35,8 +35,8 @@ SCRIPT
35
36
VAGRANTFILE_API_VERSION = "2"
37
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
38
- config.vm.box = "contiv/ubuntu1504-netplugin"
39
- config.vm.box_version = "0.3.1"
+ config.vm.box = "contiv/centos73"
+ config.vm.box_version = "0.10.0"
40
num_nodes = 1
41
base_ip = "192.168.10."
42
node_ips = num_nodes.times.collect { |n| base_ip + "#{n+10}" }
0 commit comments