blob: 3ae74e0fa826536c25bf7ed18b15e48f43f71799 [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
Scott Baker8b9182d2016-10-27 17:53:52 -0700104 sudo mkdir -p /var/extra
105
Andy Bavier8ce395f2016-10-14 12:51:30 -0400106 # Sometimes this command fails on the first try
Scott Baker8b9182d2016-10-27 17:53:52 -0700107 sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/var/extra/" || sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/var/extra/"
108
109 # we'll replace /var/lib/libvirt/images with a symlink below
110 [ -d /var/lib/libvirt/images/ ] && [ ! -h /var/lib/libvirt/images ] && sudo rmdir /var/lib/libvirt/images
111
112 sudo mkdir -p /var/extra/libvirt_images
113 sudo mkdir -p /var/extra/docker
114 [ ! -e /var/lib/libvirt/images ] && sudo ln -s /var/extra/libvirt_images /var/lib/libvirt/images
115 [ ! -e /var/lib/docker ] && sudo ln -s /var/extra/docker /var/lib/docker
Andy Bavier99c11d32016-09-14 17:21:20 -0400116
117 cd $CORDDIR/build
118 SRC="#- 'on_cloudlab=True'"
119 DST="- 'on_cloudlab=True'"
120 sed -i "s/$SRC/$DST/" config/cord_in_a_box.yml
121 fi
122}
123
124function unfortunate_hacks() {
125 cd $CORDDIR/build
126
Andy Bavier99c11d32016-09-14 17:21:20 -0400127 # Allow compute nodes to PXE boot from mgmtbr
128 sed -i "s/@type='udp']/@type='udp' or @type='bridge']/" \
129 ~/.vagrant.d/gems/gems/vagrant-libvirt-0.0.35/lib/vagrant-libvirt/action/set_boot_order.rb
130
131 # Should get these keys inside the VM in another way
132 cp ~/.ssh/id_rsa* $CORDDIR
133}
134
135function corddev_up() {
136 cd $CORDDIR/build
137
138 sudo su $USER -c 'vagrant up corddev --provider libvirt'
139}
140
141function install_head_node() {
142 cd $CORDDIR/build
143
144 # Network setup to install physical server as head node
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400145 BRIDGE=$( route -n | grep 10.100.198.0 | awk '{print $8}' )
146 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 -0400147 ifconfig mgmtbr || sudo brctl addbr mgmtbr
148 sudo ifconfig mgmtbr 10.1.0.1/24 up
149
150 # User has been added to the libvirtd group, but su $USER to be safe
151 sudo su $USER -c "vagrant ssh corddev -c \"cp /cord/id_rsa* ~/.ssh\""
152 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew fetch\""
153 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew buildImages\""
154 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG -PtargetReg=10.100.198.201:5000 publish\""
155 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG deploy\""
156}
157
158function set_up_maas_user() {
159 # Set up MAAS user to restart nodes via libvirt
160 sudo mkdir -p /home/maas
161 sudo chown maas:maas /home/maas
162 sudo chsh -s /bin/bash maas
163 sudo adduser maas libvirtd
164
165 sudo su maas -c 'cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys'
166}
167
168function add_compute_node() {
169 cd $CORDDIR/build
170 sudo su $USER -c 'vagrant up compute_node --provider libvirt'
171
Andy Bavierb5796fb2016-10-20 12:06:47 -0400172 # Change MAC address of bridge to match cord-pod service profile
173 # This change won't survive a reboot
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400174 BRIDGE=$( route -n | grep 10.6.1.0 | awk '{print $8}' )
175 sudo ifconfig $BRIDGE hw ether 02:42:0a:06:01:01
Andy Bavierb5796fb2016-10-20 12:06:47 -0400176
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400177 # Add gateway IP addresses to $BRIDGE for vsg and exampleservice tests
Andy Bavierb5796fb2016-10-20 12:06:47 -0400178 # This change won't survive a reboot
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400179 sudo ip address add 10.6.1.129 dev $BRIDGE
180 sudo ip address add 10.6.1.193 dev $BRIDGE
Andy Bavierb5796fb2016-10-20 12:06:47 -0400181
Andy Bavier99c11d32016-09-14 17:21:20 -0400182 # Sign into MAAS
183 KEY=$(sudo maas-region-admin apikey --username=cord)
184 maas login cord http://localhost/MAAS/api/1.0 $KEY
185
186 NODEID=$(maas cord nodes list|jq -r '.[] | select(.status == 0).system_id')
187 until [ "$NODEID" ]; do
188 echo "Waiting for the compute node to transition to NEW state"
189 sleep 15
190 NODEID=$(maas cord nodes list|jq -r '.[] | select(.status == 0).system_id')
191 done
192
193 # Add remote power state
194 maas cord node update $NODEID power_type="virsh" \
195 power_parameters_power_address="qemu+ssh://maas@localhost/system" \
196 power_parameters_power_id="build_compute_node"
197
198 STATUS=$(sudo /usr/local/bin/get-node-prov-state |jq ".[] | select(.id == \"$NODEID\").status")
199 until [ "$STATUS" == "2" ]; do
200 if [ "$STATUS" == "3" ]; then
201 echo "*** ERROR in provisioning!"
202 echo "*** Check /etc/maas/ansible/logs/$NODEID.log"
203 exit 1
204 fi
205 echo "Waiting for the compute node to be fully provisioned"
206 sleep 60
207 STATUS=$(sudo /usr/local/bin/get-node-prov-state |jq ".[] | select(.id == \"$NODEID\").status")
208 done
209
210 echo ""
211 echo "compute_node is fully provisioned!"
212}
213
214function run_e2e_test () {
215 cd $CORDDIR/build
216
217 # User has been added to the libvirtd group, but su $USER to be safe
218 sudo su $USER -c "vagrant ssh corddev -c \"cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG postDeployTests\""
219}
220
221function run_diagnostics() {
222 echo "*** COLLECTING DIAGNOSTIC INFO NOT CURRENTLY IMPLEMENTED"
223 # Need to fix up inventory to collect info from compute nodes
224 # Using juju-ansible is one possibility
225 #echo "*** COLLECTING DIAGNOSTIC INFO - check ~/diag-* on the head node"
226 #ansible-playbook -i $INVENTORY cord-diag-playbook.yml
227}
228
229# Parse options
230RUN_TEST=0
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400231SETUP_ONLY=0
Andy Bavier99c11d32016-09-14 17:21:20 -0400232SETUP_BRANCH="master"
233DIAGNOSTICS=0
234CLEANUP=0
235
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400236while getopts "b:cdhst" opt; do
Andy Bavier99c11d32016-09-14 17:21:20 -0400237 case ${opt} in
238 b ) XOS_BRANCH=$OPTARG
239 ;;
240 c ) CLEANUP=1
241 ;;
242 d ) DIAGNOSTICS=1
243 ;;
244 h ) echo "Usage:"
245 echo " $0 install OpenStack and prep XOS and ONOS VMs [default]"
246 echo " $0 -b <branch> checkout <branch> of the xos git repo"
247 echo " $0 -c cleanup from previous test"
248 echo " $0 -d run diagnostic collector"
249 echo " $0 -h display this help message"
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400250 echo " $0 -s run initial setup phase only (don't start building CORD)"
Andy Bavier99c11d32016-09-14 17:21:20 -0400251 echo " $0 -t do install, bring up cord-pod configuration, run E2E test"
252 exit 0
253 ;;
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400254 s ) SETUP_ONLY=1
255 ;;
Andy Bavier99c11d32016-09-14 17:21:20 -0400256 t ) RUN_TEST=1
257 ;;
258 \? ) echo "Invalid option: -$OPTARG"
259 exit 1
260 ;;
261 esac
262done
263
264# What to do
265if [[ $CLEANUP -eq 1 ]]
266then
267 cleanup_from_previous_test
268fi
269
270set -e
271
272bootstrap
273cloudlab_setup
274unfortunate_hacks
275corddev_up
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400276
277if [[ $SETUP_ONLY -ne 0 ]]
278then
279 echo "Finished build environment setup, exiting..."
280 exit 0
281fi
282
Andy Bavier99c11d32016-09-14 17:21:20 -0400283install_head_node
284set_up_maas_user
285add_compute_node
286
287if [[ $RUN_TEST -eq 1 ]]
288then
289 run_e2e_test
290fi
291
292if [[ $DIAGNOSTICS -eq 1 ]]
293then
294 run_diagnostics
295fi
296
297exit 0