blob: 709149396dd4f2b3175e382e4e12196d51dc1e47 [file] [log] [blame]
Andy Bavier99c11d32016-09-14 17:21:20 -04001#!/usr/bin/env bash
2
3set -e
4set -x
5
6CORDDIR=~/opencord
7VMDIR=/cord/build/
8CONFIG=config/cord_in_a_box.yml
9
10function cleanup_from_previous_test() {
11 set +e
12
13 echo "## Cleanup ##"
14
15 echo "Shutting down all Vagrant VMs"
16 cd $CORDDIR/build
17 vagrant destroy
18
19 echo "Destroying juju environment"
20 juju destroy-environment --force -y manual
21
22 VMS=$( sudo uvt-kvm list )
23 for VM in $VMS
24 do
25 echo "Destroying $VM"
26 sudo uvt-kvm destroy $VM
27 done
28
29 echo "Cleaning up files"
30 rm -rf ~/.juju
31 rm -f ~/.ssh/known_hosts
32 rm -rf ~/platform-install
33 rm -rf ~/cord_apps
34 rm -rf ~/.ansible_async
35
36 echo "Removing MAAS"
37 [ -e /usr/local/bin/remove-maas-components ] && /usr/local/bin/remove-maas-components
38
39 echo "Remove apt-cacher-ng"
40 sudo apt-get remove -y apt-cacher-ng
41 sudo rm -f /etc/apt/apt.conf.d/02apt-cacher-ng
42
43 echo "Removing mgmtbr"
44 ifconfig mgmtbr && sudo ip link set dev mgmtbr down && sudo brctl delbr mgmtbr
45
46 echo "Removing Juju packages"
47 sudo apt-get remove --purge -y $(dpkg --get-selections | grep "juju\|nova\|neutron\|keystone\|glance" | awk '{print $1}')
48 sudo apt-get autoremove -y
49
50 rm -rf $CORDDIR
51
52 set -e
53}
54
55function bootstrap() {
56 cd ~
57 sudo apt-get update
58 [ -e vagrant_1.8.5_x86_64.deb ] || wget https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5_x86_64.deb
59 sudo dpkg -i vagrant_1.8.5_x86_64.deb
Andy Bavier8ce395f2016-10-14 12:51:30 -040060 sudo apt-get -y install qemu-kvm libvirt-bin libvirt-dev curl nfs-kernel-server
Andy Bavier99c11d32016-09-14 17:21:20 -040061
62 [ -e ~/.ssh/id_rsa ] || ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
63 cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
64
65 # Log into the local node once to get host key
66 ssh -o StrictHostKeyChecking=no localhost "ls > /dev/null"
67
68 USER=$(whoami)
69 sudo adduser $USER libvirtd
70
71 sudo curl -o /usr/local/bin/repo https://storage.googleapis.com/git-repo-downloads/repo
72 sudo chmod a+x /usr/local/bin/repo
73
74 if [ ! -d "$CORDDIR" ]
75 then
76 mkdir $CORDDIR && cd $CORDDIR
77 git config --global user.name 'Test User'
78 git config --global user.email 'test@null.com'
79 git config --global color.ui false
80
Scott Baker101b37c2016-10-24 16:22:43 -070081 repo init -u https://gerrit.opencord.org/manifest -b master -g build,onos,orchestration
Andy Bavier99c11d32016-09-14 17:21:20 -040082 repo sync
83
84 cd $CORDDIR/build
85 sed -i "s/user: 'ubuntu'/user: \"$USER\"/" $CONFIG
86
87 # Set external interface in config file
88 IFACE=$(route | grep default | awk '{print $8}' )
Andy Bavierb5796fb2016-10-20 12:06:47 -040089 SRC="'eth0'"
90 DST="'"$IFACE"'"
91 sed -i "s/$SRC/$DST/" $CONFIG
Andy Bavier99c11d32016-09-14 17:21:20 -040092 fi
93
94 cd $CORDDIR/build
Andy Bavier45e30bb2016-10-07 15:45:18 -040095 vagrant plugin install vagrant-libvirt --plugin-version 0.0.35
Andy Bavier99c11d32016-09-14 17:21:20 -040096 vagrant plugin install vagrant-mutate
97 vagrant box list ubuntu/trusty64 | grep virtualbox || vagrant box add ubuntu/trusty64
98 vagrant box list ubuntu/trusty64 | grep libvirt || vagrant mutate ubuntu/trusty64 libvirt --input-provider virtualbox
99}
100
101function cloudlab_setup() {
102 if [ -e /usr/testbed/bin/mkextrafs ]
103 then
Andy Bavier8ce395f2016-10-14 12:51:30 -0400104 # Sometimes this command fails on the first try
105 sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/var/lib/libvirt/images/" || sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/var/lib/libvirt/images/"
Andy Bavier99c11d32016-09-14 17:21:20 -0400106
107 cd $CORDDIR/build
108 SRC="#- 'on_cloudlab=True'"
109 DST="- 'on_cloudlab=True'"
110 sed -i "s/$SRC/$DST/" config/cord_in_a_box.yml
111 fi
112}
113
114function unfortunate_hacks() {
115 cd $CORDDIR/build
116
Andy Bavier99c11d32016-09-14 17:21:20 -0400117 # Allow compute nodes to PXE boot from mgmtbr
118 sed -i "s/@type='udp']/@type='udp' or @type='bridge']/" \
119 ~/.vagrant.d/gems/gems/vagrant-libvirt-0.0.35/lib/vagrant-libvirt/action/set_boot_order.rb
120
121 # Should get these keys inside the VM in another way
122 cp ~/.ssh/id_rsa* $CORDDIR
123}
124
125function corddev_up() {
126 cd $CORDDIR/build
127
128 sudo su $USER -c 'vagrant up corddev --provider libvirt'
129}
130
131function install_head_node() {
132 cd $CORDDIR/build
133
134 # Network setup to install physical server as head node
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400135 BRIDGE=$( route -n | grep 10.100.198.0 | awk '{print $8}' )
136 ip addr list dev $BRIDGE | grep 10.100.198.201 || sudo ip addr add dev $BRIDGE 10.100.198.201
Andy Bavier99c11d32016-09-14 17:21:20 -0400137 ifconfig mgmtbr || sudo brctl addbr mgmtbr
138 sudo ifconfig mgmtbr 10.1.0.1/24 up
139
140 # User has been added to the libvirtd group, but su $USER to be safe
141 sudo su $USER -c "vagrant ssh corddev -c \"cp /cord/id_rsa* ~/.ssh\""
142 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew fetch\""
143 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew buildImages\""
144 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG -PtargetReg=10.100.198.201:5000 publish\""
145 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG deploy\""
146}
147
148function set_up_maas_user() {
149 # Set up MAAS user to restart nodes via libvirt
150 sudo mkdir -p /home/maas
151 sudo chown maas:maas /home/maas
152 sudo chsh -s /bin/bash maas
153 sudo adduser maas libvirtd
154
155 sudo su maas -c 'cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys'
156}
157
158function add_compute_node() {
159 cd $CORDDIR/build
160 sudo su $USER -c 'vagrant up compute_node --provider libvirt'
161
Andy Bavierb5796fb2016-10-20 12:06:47 -0400162 # Change MAC address of bridge to match cord-pod service profile
163 # This change won't survive a reboot
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400164 BRIDGE=$( route -n | grep 10.6.1.0 | awk '{print $8}' )
165 sudo ifconfig $BRIDGE hw ether 02:42:0a:06:01:01
Andy Bavierb5796fb2016-10-20 12:06:47 -0400166
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400167 # Add gateway IP addresses to $BRIDGE for vsg and exampleservice tests
Andy Bavierb5796fb2016-10-20 12:06:47 -0400168 # This change won't survive a reboot
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400169 sudo ip address add 10.6.1.129 dev $BRIDGE
170 sudo ip address add 10.6.1.193 dev $BRIDGE
Andy Bavierb5796fb2016-10-20 12:06:47 -0400171
Andy Bavier99c11d32016-09-14 17:21:20 -0400172 # Sign into MAAS
173 KEY=$(sudo maas-region-admin apikey --username=cord)
174 maas login cord http://localhost/MAAS/api/1.0 $KEY
175
176 NODEID=$(maas cord nodes list|jq -r '.[] | select(.status == 0).system_id')
177 until [ "$NODEID" ]; do
178 echo "Waiting for the compute node to transition to NEW state"
179 sleep 15
180 NODEID=$(maas cord nodes list|jq -r '.[] | select(.status == 0).system_id')
181 done
182
183 # Add remote power state
184 maas cord node update $NODEID power_type="virsh" \
185 power_parameters_power_address="qemu+ssh://maas@localhost/system" \
186 power_parameters_power_id="build_compute_node"
187
188 STATUS=$(sudo /usr/local/bin/get-node-prov-state |jq ".[] | select(.id == \"$NODEID\").status")
189 until [ "$STATUS" == "2" ]; do
190 if [ "$STATUS" == "3" ]; then
191 echo "*** ERROR in provisioning!"
192 echo "*** Check /etc/maas/ansible/logs/$NODEID.log"
193 exit 1
194 fi
195 echo "Waiting for the compute node to be fully provisioned"
196 sleep 60
197 STATUS=$(sudo /usr/local/bin/get-node-prov-state |jq ".[] | select(.id == \"$NODEID\").status")
198 done
199
200 echo ""
201 echo "compute_node is fully provisioned!"
202}
203
204function run_e2e_test () {
205 cd $CORDDIR/build
206
207 # User has been added to the libvirtd group, but su $USER to be safe
208 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG postDeployTests\""
209}
210
211function run_diagnostics() {
212 echo "*** COLLECTING DIAGNOSTIC INFO NOT CURRENTLY IMPLEMENTED"
213 # Need to fix up inventory to collect info from compute nodes
214 # Using juju-ansible is one possibility
215 #echo "*** COLLECTING DIAGNOSTIC INFO - check ~/diag-* on the head node"
216 #ansible-playbook -i $INVENTORY cord-diag-playbook.yml
217}
218
219# Parse options
220RUN_TEST=0
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400221SETUP_ONLY=0
Andy Bavier99c11d32016-09-14 17:21:20 -0400222SETUP_BRANCH="master"
223DIAGNOSTICS=0
224CLEANUP=0
225
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400226while getopts "b:cdhst" opt; do
Andy Bavier99c11d32016-09-14 17:21:20 -0400227 case ${opt} in
228 b ) XOS_BRANCH=$OPTARG
229 ;;
230 c ) CLEANUP=1
231 ;;
232 d ) DIAGNOSTICS=1
233 ;;
234 h ) echo "Usage:"
235 echo " $0 install OpenStack and prep XOS and ONOS VMs [default]"
236 echo " $0 -b <branch> checkout <branch> of the xos git repo"
237 echo " $0 -c cleanup from previous test"
238 echo " $0 -d run diagnostic collector"
239 echo " $0 -h display this help message"
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400240 echo " $0 -s run initial setup phase only (don't start building CORD)"
Andy Bavier99c11d32016-09-14 17:21:20 -0400241 echo " $0 -t do install, bring up cord-pod configuration, run E2E test"
242 exit 0
243 ;;
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400244 s ) SETUP_ONLY=1
245 ;;
Andy Bavier99c11d32016-09-14 17:21:20 -0400246 t ) RUN_TEST=1
247 ;;
248 \? ) echo "Invalid option: -$OPTARG"
249 exit 1
250 ;;
251 esac
252done
253
254# What to do
255if [[ $CLEANUP -eq 1 ]]
256then
257 cleanup_from_previous_test
258fi
259
260set -e
261
262bootstrap
263cloudlab_setup
264unfortunate_hacks
265corddev_up
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400266
267if [[ $SETUP_ONLY -ne 0 ]]
268then
269 echo "Finished build environment setup, exiting..."
270 exit 0
271fi
272
Andy Bavier99c11d32016-09-14 17:21:20 -0400273install_head_node
274set_up_maas_user
275add_compute_node
276
277if [[ $RUN_TEST -eq 1 ]]
278then
279 run_e2e_test
280fi
281
282if [[ $DIAGNOSTICS -eq 1 ]]
283then
284 run_diagnostics
285fi
286
287exit 0