blob: 5eecc1c5a2e173f82d9d29d9101badd3202bc9f5 [file] [log] [blame]
Andy Bavier99c11d32016-09-14 17:21:20 -04001#!/usr/bin/env bash
2
3set -e
Andy Bavier99c11d32016-09-14 17:21:20 -04004
5CORDDIR=~/opencord
6VMDIR=/cord/build/
7CONFIG=config/cord_in_a_box.yml
Andy Baviera69ee722016-11-17 07:26:01 -08008SSHCONFIG=~/.ssh/config
Andy Bavier99c11d32016-09-14 17:21:20 -04009
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 Bavier1a35ae62016-11-15 19:58:13 -080060 sudo apt-get -y install qemu-kvm libvirt-bin libvirt-dev curl nfs-kernel-server git build-essential
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
Zack Williamsdae7ff62016-11-14 15:20:06 -070084 # check out gerrit branches using repo
85 for gerrit_branch in ${GERRIT_BRANCHES[@]}; do
86 echo "checking out opencord gerrit branch: $gerrit_branch"
87 repo download ${gerrit_branch/:/ }
88 done
89
Andy Bavier99c11d32016-09-14 17:21:20 -040090 cd $CORDDIR/build
91 sed -i "s/user: 'ubuntu'/user: \"$USER\"/" $CONFIG
92
93 # Set external interface in config file
94 IFACE=$(route | grep default | awk '{print $8}' )
Andy Bavierb5796fb2016-10-20 12:06:47 -040095 SRC="'eth0'"
96 DST="'"$IFACE"'"
97 sed -i "s/$SRC/$DST/" $CONFIG
Andy Bavier99c11d32016-09-14 17:21:20 -040098 fi
99
100 cd $CORDDIR/build
Andy Bavier45e30bb2016-10-07 15:45:18 -0400101 vagrant plugin install vagrant-libvirt --plugin-version 0.0.35
Andy Bavier99c11d32016-09-14 17:21:20 -0400102 vagrant plugin install vagrant-mutate
103 vagrant box list ubuntu/trusty64 | grep virtualbox || vagrant box add ubuntu/trusty64
104 vagrant box list ubuntu/trusty64 | grep libvirt || vagrant mutate ubuntu/trusty64 libvirt --input-provider virtualbox
105}
106
107function cloudlab_setup() {
108 if [ -e /usr/testbed/bin/mkextrafs ]
109 then
Andy Bavier9c0835e2016-11-11 15:56:47 -0500110 sudo mkdir -p /mnt/extra
Scott Baker8b9182d2016-10-27 17:53:52 -0700111
Andy Bavier8ce395f2016-10-14 12:51:30 -0400112 # Sometimes this command fails on the first try
Andy Bavier9c0835e2016-11-11 15:56:47 -0500113 sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/mnt/extra/" || sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/mnt/extra/"
114
115 # Check that the mount succeeded (sometimes mkextrafs succeeds but device not mounted)
Andy Baviera69ee722016-11-17 07:26:01 -0800116 mount | grep sdb || (echo "ERROR: mkextrafs failed, exiting!" && exit 1)
Scott Baker8b9182d2016-10-27 17:53:52 -0700117
118 # we'll replace /var/lib/libvirt/images with a symlink below
119 [ -d /var/lib/libvirt/images/ ] && [ ! -h /var/lib/libvirt/images ] && sudo rmdir /var/lib/libvirt/images
120
Andy Bavier9c0835e2016-11-11 15:56:47 -0500121 sudo mkdir -p /mnt/extra/libvirt_images
122 sudo mkdir -p /mnt/extra/docker
123 sudo mkdir -p /mnt/extra/docker-registry
124 [ ! -e /var/lib/libvirt/images ] && sudo ln -s /mnt/extra/libvirt_images /var/lib/libvirt/images
125 [ ! -e /var/lib/docker ] && sudo ln -s /mnt/extra/docker /var/lib/docker
126 [ ! -e /docker-registry ] && sudo ln -s /mnt/extra/docker-registry /docker-registry
Andy Bavier99c11d32016-09-14 17:21:20 -0400127
128 cd $CORDDIR/build
129 SRC="#- 'on_cloudlab=True'"
130 DST="- 'on_cloudlab=True'"
131 sed -i "s/$SRC/$DST/" config/cord_in_a_box.yml
132 fi
133}
134
135function unfortunate_hacks() {
136 cd $CORDDIR/build
137
Andy Bavier99c11d32016-09-14 17:21:20 -0400138 # Allow compute nodes to PXE boot from mgmtbr
139 sed -i "s/@type='udp']/@type='udp' or @type='bridge']/" \
140 ~/.vagrant.d/gems/gems/vagrant-libvirt-0.0.35/lib/vagrant-libvirt/action/set_boot_order.rb
Andy Bavier99c11d32016-09-14 17:21:20 -0400141}
142
143function corddev_up() {
144 cd $CORDDIR/build
145
146 sudo su $USER -c 'vagrant up corddev --provider libvirt'
Andy Baviera69ee722016-11-17 07:26:01 -0800147
148 # This is a workaround for a weird issue with ARP cache timeout breaking 'vagrant ssh'
149 # It allows SSH'ing to the machine via 'ssh corddev'
150 sudo su $USER -c "grep corddev $SSHCONFIG || vagrant ssh-config corddev >> $SSHCONFIG"
Andy Bavier99c11d32016-09-14 17:21:20 -0400151}
152
153function install_head_node() {
154 cd $CORDDIR/build
155
156 # Network setup to install physical server as head node
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400157 BRIDGE=$( route -n | grep 10.100.198.0 | awk '{print $8}' )
158 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 -0400159 ifconfig mgmtbr || sudo brctl addbr mgmtbr
160 sudo ifconfig mgmtbr 10.1.0.1/24 up
161
Andy Baviera69ee722016-11-17 07:26:01 -0800162 # SSH config saved earlier allows us to connect to VM without running 'vagrant'
163 scp ~/.ssh/id_rsa* corddev:.ssh
164 ssh corddev "cd /cord/build; ./gradlew fetch"
165 ssh corddev "cd /cord/build; ./gradlew buildImages"
166 ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG -PtargetReg=10.100.198.201:5000 publish"
167 ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG deploy"
168
169 # SSH config was overwritten by the deploy step
170 # Will go away when head node runs in 'prod' VM
171 sudo su $USER -c "grep corddev $SSHCONFIG || vagrant ssh-config corddev >> $SSHCONFIG"
Andy Bavier99c11d32016-09-14 17:21:20 -0400172}
173
174function set_up_maas_user() {
175 # Set up MAAS user to restart nodes via libvirt
176 sudo mkdir -p /home/maas
177 sudo chown maas:maas /home/maas
178 sudo chsh -s /bin/bash maas
179 sudo adduser maas libvirtd
180
181 sudo su maas -c 'cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys'
182}
183
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600184FIRST_COMPUTE_NODE=true
185
Andy Bavier99c11d32016-09-14 17:21:20 -0400186function add_compute_node() {
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600187 echo add_compute_node: $1 $2
188
Andy Bavier99c11d32016-09-14 17:21:20 -0400189 cd $CORDDIR/build
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600190 sudo su $USER -c "vagrant up $1 --provider libvirt"
Andy Bavier99c11d32016-09-14 17:21:20 -0400191
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600192 if [ "$FIRST_COMPUTE_NODE" == true ]; then
193 # Change MAC address of bridge to match cord-pod service profile
194 # This change won't survive a reboot
195 BRIDGE=$( route -n | grep 10.6.1.0 | awk '{print $8}' )
196 sudo ifconfig $BRIDGE hw ether 02:42:0a:06:01:01
Andy Bavierb5796fb2016-10-20 12:06:47 -0400197
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600198 # Add gateway IP addresses to $BRIDGE for vsg and exampleservice tests
199 # This change won't survive a reboot
200 sudo ip address add 10.6.1.129 dev $BRIDGE
201 sudo ip address add 10.6.1.193 dev $BRIDGE
202
203 FIRST_COMPUTE_NODE=false
204 fi
Andy Bavierb5796fb2016-10-20 12:06:47 -0400205
Andy Bavier99c11d32016-09-14 17:21:20 -0400206 # Sign into MAAS
207 KEY=$(sudo maas-region-admin apikey --username=cord)
208 maas login cord http://localhost/MAAS/api/1.0 $KEY
209
210 NODEID=$(maas cord nodes list|jq -r '.[] | select(.status == 0).system_id')
211 until [ "$NODEID" ]; do
212 echo "Waiting for the compute node to transition to NEW state"
213 sleep 15
214 NODEID=$(maas cord nodes list|jq -r '.[] | select(.status == 0).system_id')
215 done
216
217 # Add remote power state
218 maas cord node update $NODEID power_type="virsh" \
219 power_parameters_power_address="qemu+ssh://maas@localhost/system" \
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600220 power_parameters_power_id="$2"
Andy Bavier99c11d32016-09-14 17:21:20 -0400221
222 STATUS=$(sudo /usr/local/bin/get-node-prov-state |jq ".[] | select(.id == \"$NODEID\").status")
223 until [ "$STATUS" == "2" ]; do
224 if [ "$STATUS" == "3" ]; then
Andy Bavierc7588652016-11-03 13:55:22 -0400225 echo "*** [WARNING] Possible error in node provisioning process"
226 echo "*** [WARNING] Check /etc/maas/ansible/logs/$NODEID.log"
Andy Bavier99c11d32016-09-14 17:21:20 -0400227 fi
228 echo "Waiting for the compute node to be fully provisioned"
229 sleep 60
230 STATUS=$(sudo /usr/local/bin/get-node-prov-state |jq ".[] | select(.id == \"$NODEID\").status")
231 done
232
233 echo ""
234 echo "compute_node is fully provisioned!"
235}
236
237function run_e2e_test () {
238 cd $CORDDIR/build
239
240 # User has been added to the libvirtd group, but su $USER to be safe
Andy Baviera69ee722016-11-17 07:26:01 -0800241 ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG postDeployTests"
Andy Bavier99c11d32016-09-14 17:21:20 -0400242}
243
244function run_diagnostics() {
245 echo "*** COLLECTING DIAGNOSTIC INFO NOT CURRENTLY IMPLEMENTED"
246 # Need to fix up inventory to collect info from compute nodes
247 # Using juju-ansible is one possibility
248 #echo "*** COLLECTING DIAGNOSTIC INFO - check ~/diag-* on the head node"
249 #ansible-playbook -i $INVENTORY cord-diag-playbook.yml
250}
251
252# Parse options
Zack Williamsdae7ff62016-11-14 15:20:06 -0700253GERRIT_BRANCHES=
Andy Bavier99c11d32016-09-14 17:21:20 -0400254RUN_TEST=0
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400255SETUP_ONLY=0
Andy Bavier99c11d32016-09-14 17:21:20 -0400256DIAGNOSTICS=0
257CLEANUP=0
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600258#By default, cord-in-a-box creates 1 compute node. If more than one compute is
259#needed, use -n option
260NUM_COMPUTE_NODES=1
Andy Bavier99c11d32016-09-14 17:21:20 -0400261
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600262while getopts "b:cdhn:st" opt; do
Andy Bavier99c11d32016-09-14 17:21:20 -0400263 case ${opt} in
Zack Williamsdae7ff62016-11-14 15:20:06 -0700264 b ) GERRIT_BRANCHES+=("$OPTARG")
Andy Bavier99c11d32016-09-14 17:21:20 -0400265 ;;
266 c ) CLEANUP=1
267 ;;
268 d ) DIAGNOSTICS=1
269 ;;
270 h ) echo "Usage:"
271 echo " $0 install OpenStack and prep XOS and ONOS VMs [default]"
Zack Williamsdae7ff62016-11-14 15:20:06 -0700272 echo " $0 -b <project:changeset/revision> checkout a changesets from gerrit. Can"
273 echo " be used multiple times."
Andy Bavier99c11d32016-09-14 17:21:20 -0400274 echo " $0 -c cleanup from previous test"
275 echo " $0 -d run diagnostic collector"
276 echo " $0 -h display this help message"
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600277 echo " $0 -n number of compute nodes to setup. currently max 2 nodes can be supported"
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400278 echo " $0 -s run initial setup phase only (don't start building CORD)"
Andy Bavier99c11d32016-09-14 17:21:20 -0400279 echo " $0 -t do install, bring up cord-pod configuration, run E2E test"
280 exit 0
281 ;;
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600282 n ) NUM_COMPUTE_NODES=$OPTARG
283 ;;
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400284 s ) SETUP_ONLY=1
285 ;;
Andy Bavier99c11d32016-09-14 17:21:20 -0400286 t ) RUN_TEST=1
287 ;;
288 \? ) echo "Invalid option: -$OPTARG"
289 exit 1
290 ;;
291 esac
292done
293
294# What to do
295if [[ $CLEANUP -eq 1 ]]
296then
297 cleanup_from_previous_test
298fi
299
300set -e
301
302bootstrap
303cloudlab_setup
304unfortunate_hacks
305corddev_up
Andy Bavier5c2e4fa2016-10-31 13:50:52 -0400306
307if [[ $SETUP_ONLY -ne 0 ]]
308then
309 echo "Finished build environment setup, exiting..."
310 exit 0
311fi
312
Andy Bavier99c11d32016-09-14 17:21:20 -0400313install_head_node
314set_up_maas_user
Srikanth Vavilapallib1c4da02016-11-17 15:24:28 -0600315
316#Limiting the maximum number of compute nodes that can be supported to 2. If
317#more than 2 compute nodes are needed, this script need to be enhanced to set
318#the environment variable NUM_COMPUTE_NODES before invoking the Vagrant commands
319if [[ $NUM_COMPUTE_NODES -gt 2 ]]
320then
321 echo "currently max only two compute nodes can be supported..."
322 NUM_COMPUTE_NODES=2
323fi
324
325for i in `seq 1 $NUM_COMPUTE_NODES`;
326do
327 echo adding the compute node: compute-node-$i
328 add_compute_node compute_node-$i build_compute_node-$i
329done
Andy Bavier99c11d32016-09-14 17:21:20 -0400330
331if [[ $RUN_TEST -eq 1 ]]
332then
333 run_e2e_test
334fi
335
336if [[ $DIAGNOSTICS -eq 1 ]]
337then
338 run_diagnostics
339fi
340
341exit 0