|
1 | 1 | #!/bin/bash
|
2 | 2 |
|
3 |
| -# GetKubernetes fetches k8s binaries from the k8 release repo |
4 |
| -function GetKubernetes { |
| 3 | +set -euo pipefail |
5 | 4 |
|
6 |
| - # fetch kubernetes released binaries |
7 |
| - pushd . |
8 |
| - mkdir -p $top_dir/k8s-$k8sVer |
9 |
| - if [ -f $top_dir/k8s-$k8sVer/kubernetes.tar.gz ]; then |
10 |
| - echo "k8s-$k8sVer/kubernetes.tar.gz found, not fetching." |
11 |
| - rm -rf $top_dir/k8s-$k8sVer/kubernetes |
12 |
| - rm -rf $top_dir/k8s-$k8sVer/bin |
13 |
| - else |
14 |
| - cd $top_dir/k8s-$k8sVer |
15 |
| - wget https://github.com/kubernetes/kubernetes/releases/download/$k8sVer/kubernetes.tar.gz |
16 |
| - fi |
| 5 | +echo "Using kubeadm/kubectl installation" |
17 | 6 |
|
18 |
| - # untar kubernetes released binaries |
19 |
| - cd $top_dir/k8s-$k8sVer |
20 |
| - tar xvfz kubernetes.tar.gz kubernetes/server/kubernetes-server-linux-amd64.tar.gz |
21 |
| - tar xvfz kubernetes/server/kubernetes-server-linux-amd64.tar.gz |
22 |
| - popd |
23 |
| - |
24 |
| - if [ ! -f $top_dir/k8s-$k8sVer/kubernetes/server/bin/kubelet ]; then |
25 |
| - echo "Error kubelet not found after fetch/extraction" |
26 |
| - exit 1 |
27 |
| - fi |
28 |
| -} |
29 |
| - |
30 |
| -# GetContiv fetches k8s binaries from the contiv release repo |
31 |
| -function GetContiv { |
32 |
| - |
33 |
| - # fetch contiv binaries |
34 |
| - pushd . |
35 |
| - mkdir -p $top_dir/contiv_bin |
36 |
| - if [ -f $top_dir/contiv_bin/netplugin-$contivVer.tar.bz2 ]; then |
37 |
| - echo "netplugin-$contivVer.tar.bz2 found, not fetching." |
38 |
| - else |
39 |
| - cd $top_dir/contiv_bin |
40 |
| - wget https://github.com/contiv/netplugin/releases/download/$contivVer/netplugin-$contivVer.tar.bz2 |
41 |
| - tar xvfj netplugin-$contivVer.tar.bz2 |
42 |
| - fi |
43 |
| - popd |
44 |
| - |
45 |
| - if [ ! -f $top_dir/contiv_bin/contivk8s ]; then |
46 |
| - echo "Error contivk8s not found after fetch/extraction" |
47 |
| - exit 1 |
48 |
| - fi |
49 |
| -} |
50 |
| - |
51 |
| -#GetContrib fetches contrib if not present |
52 |
| - |
53 |
| -function GetContrib { |
54 |
| - pushd . |
55 |
| - if [ -f $top_dir/contrib ]; then |
56 |
| - echo "contrib found, not fetching." |
57 |
| - else |
58 |
| - echo "Fetching contrib....." |
59 |
| - git clone https://github.com/jojimt/contrib -b contiv |
60 |
| - fi |
61 |
| - popd |
62 |
| -} |
63 |
| - |
64 |
| -# kubernetes version to use -- legacy is v1.2.3 |
65 |
| -#: ${k8sVer:=v1.2.3} |
66 |
| - |
67 |
| -# kubectl installation mechanism default is v1.4.4 |
68 |
| -: ${k8sVer:=v1.4.4} |
69 |
| - |
70 |
| -# contiv version |
71 |
| -: ${contivVer:=1.0.2} |
72 |
| - |
73 |
| -top_dir=$(git rev-parse --show-toplevel | sed 's|/[^/]*$||') |
74 |
| - |
75 |
| -# kubernetes installation mechanism |
76 |
| -k8s_devtest=$CONTIV_K8S_USE_KUBEADM |
77 |
| -k8s_legacy_devtest=$CONTIV_K8S_LEGACY |
78 |
| - |
79 |
| -legacyInstall=0 |
80 |
| - |
81 |
| -if [ "$k8s_legacy_devtest" == "1" ]; then |
82 |
| - legacyInstall=1 |
83 |
| -elif [ "`printf "v1.4\n$k8sVer" | sort -t '.' -k 1,1 -k 2,2 -k 3,3 -k 4,4 -g | head -n 1`" != "v1.4" ]; then |
84 |
| - legacyInstall=1 |
85 |
| -fi |
86 |
| - |
87 |
| -if [ "$legacyInstall" == 1 ]; then |
88 |
| - echo "Using legacy kubernetes installation" |
89 |
| - GetKubernetes |
90 |
| - GetContrib |
| 7 | +# Copy the contiv installation file to shared folder |
| 8 | +if [ "${CONTIV_K8S_USE_KUBEADM:-}" == 1 ]; then |
| 9 | + cp -f ../../install/k8s/contiv/contiv_devtest.yaml ./export/.contiv.yaml |
91 | 10 | else
|
92 |
| - echo "Using kubeadm/kubectl installation" |
| 11 | + cp -f ../../install/k8s/contiv/contiv.yaml ./export/.contiv.yaml |
93 | 12 | fi
|
94 |
| - |
95 |
| -if [ "$legacyInstall" == 1 ] && [ "$k8s_devtest" == "" ]; then |
96 |
| - GetContiv |
97 |
| -fi |
98 |
| - |
99 |
| -# exit on any error |
100 |
| -set -e |
| 13 | +# Replace __NETMASTER_IP__ and __VLAN_IF__ |
| 14 | +sed -i.bak 's/__NETMASTER_IP__/192.168.2.10/g' ./export/.contiv.yaml |
| 15 | +sed -i.bak 's/__VLAN_IF__/eth2/g' ./export/.contiv.yaml |
101 | 16 |
|
102 | 17 | # bring up vms
|
103 |
| -if [ "$legacyInstall" == 1 ]; then |
104 |
| - vagrant up |
105 |
| -else |
106 |
| - # Copy the contiv installation file to shared folder |
107 |
| - if [ "$k8s_devtest" == 1 ]; then |
108 |
| - cp -f ../../install/k8s/contiv/contiv_devtest.yaml ./export/.contiv.yaml |
109 |
| - else |
110 |
| - cp -f ../../install/k8s/contiv/contiv.yaml ./export/.contiv.yaml |
111 |
| - fi |
112 |
| - # Replace __NETMASTER_IP__ and __VLAN_IF__ |
113 |
| - sed -i.bak 's/__NETMASTER_IP__/192.168.2.10/g' ./export/.contiv.yaml |
114 |
| - sed -i.bak 's/__VLAN_IF__/eth2/g' ./export/.contiv.yaml |
115 |
| - VAGRANT_USE_KUBEADM=1 vagrant up |
116 |
| -fi |
117 |
| -# generate inventory |
118 |
| -./vagrant_cluster.py |
119 |
| - |
120 |
| - |
121 |
| -if [ "$legacyInstall" == 1 ]; then |
122 |
| -# run ansible |
123 |
| -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" |
124 |
| -fi |
| 18 | +VAGRANT_USE_KUBEADM=1 vagrant up |
0 commit comments