Skip to content

Commit 405471e

Browse files
committed
use the contiv/centos73 box & clean etcd
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 9e79f64 commit 405471e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
.PHONY: all build test
2+
.PHONY: all build update start stop test host-build host-test godep
33

44
all: build test
55

@@ -25,6 +25,7 @@ host-build:
2525
go install ./ ./modeldb
2626

2727
host-test:
28+
etcdctl rm --recursive /contiv.io || true
2829
go test -v ./ ./modeldb
2930
go test -bench=. -run "Benchmark"
3031

Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ SCRIPT
3535

3636
VAGRANTFILE_API_VERSION = "2"
3737
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
38-
config.vm.box = "contiv/ubuntu1504-netplugin"
39-
config.vm.box_version = "0.3.1"
38+
config.vm.box = "contiv/centos73"
39+
config.vm.box_version = "0.10.0"
4040
num_nodes = 1
4141
base_ip = "192.168.10."
4242
node_ips = num_nodes.times.collect { |n| base_ip + "#{n+10}" }

0 commit comments

Comments
 (0)