File tree 3 files changed +17
-4
lines changed
3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# run ansible
4
- ansible-playbook -i .contiv_k8s_inventory ../../.. /contrib/ansible/cluster.yml --tags " contiv_demo" -e " networking=contiv contiv_fabric_mode=default"
4
+ ansible-playbook -i .contiv_k8s_inventory ./contrib/ansible/cluster.yml --tags " contiv_demo" -e " networking=contiv contiv_fabric_mode=default"
Original file line number Diff line number Diff line change 2
2
3
3
top_dir=$( git rev-parse --show-toplevel | sed ' s|/[^/]*$||' )
4
4
# run ansible
5
- ansible-playbook -i .contiv_k8s_inventory ../../.. /contrib/ansible/cluster.yml --tags " contiv_restart" -e " networking=contiv contiv_fabric_mode=default contiv_bin_path=$top_dir /contiv_bin contiv_demo=True"
5
+ ansible-playbook -i .contiv_k8s_inventory ./contrib/ansible/cluster.yml --tags " contiv_restart" -e " networking=contiv contiv_fabric_mode=default contiv_bin_path=$top_dir /contiv_bin contiv_demo=True"
Original file line number Diff line number Diff line change @@ -48,15 +48,28 @@ function GetContiv {
48
48
fi
49
49
}
50
50
51
+ # GetContrib fetches contrib if not present
52
+
53
+ function GetContrib {
54
+ pushd .
55
+ if [ -f $top_dir /contrib ]; then
56
+ echo " netplugin-$contivVer .tar.bz2 found, not fetching."
57
+ else
58
+ git clone https://github.com/jojimt/contrib -b contiv
59
+ fi
60
+ popd
61
+ }
62
+
51
63
# kubernetes version to use -- defaults to v1.2.3
52
64
: ${k8sVer:= v1.2.3}
53
65
54
66
# contiv version
55
- : ${contivVer:= v0.1-05-05 -2016.18-38-56 .UTC}
67
+ : ${contivVer:= v0.1-09-08 -2016.20-56-40 .UTC}
56
68
57
69
top_dir=$( git rev-parse --show-toplevel | sed ' s|/[^/]*$||' )
58
70
59
71
GetKubernetes
72
+ GetContrib
60
73
61
74
k8_sanity=${CONTIV_K8}
62
75
if [ " $k8_sanity " == " " ]; then
@@ -81,5 +94,5 @@ vagrant up
81
94
82
95
if [ " $k8_sanity " == " " ]; then
83
96
# run ansible
84
- ansible-playbook -i .contiv_k8s_inventory ../../.. /contrib/ansible/cluster.yml --skip-tags " contiv_restart" -e " networking=contiv contiv_fabric_mode=default localBuildOutput=$top_dir /k8s-$k8sVer /kubernetes/server/bin contiv_bin_path=$top_dir /contiv_bin contiv_demo=True"
97
+ ansible-playbook -i .contiv_k8s_inventory ./contrib/ansible/cluster.yml --skip-tags " contiv_restart" -e " networking=contiv contiv_fabric_mode=default localBuildOutput=$top_dir /k8s-$k8sVer /kubernetes/server/bin contiv_bin_path=$top_dir /contiv_bin contiv_demo=True"
85
98
fi
You can’t perform that action at this time.
0 commit comments