Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 3 | set -e -x |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 4 | |
Zack Williams | 0620c93 | 2017-01-25 14:36:31 -0700 | [diff] [blame] | 5 | CORDDIR=~/cord |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 6 | VMDIR=/cord/build/ |
| 7 | CONFIG=config/cord_in_a_box.yml |
Andy Bavier | a69ee72 | 2016-11-17 07:26:01 -0800 | [diff] [blame] | 8 | SSHCONFIG=~/.ssh/config |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 9 | |
Andy Bavier | d116510 | 2017-01-13 16:38:57 -0500 | [diff] [blame] | 10 | # For CORD version |
| 11 | REPO_BRANCH="master" |
| 12 | VERSION_STRING="CiaB development version" |
| 13 | |
Sapan Bhatia | a94c2db | 2017-02-27 20:18:24 +0100 | [diff] [blame] | 14 | function finish { |
Sapan Bhatia | 9569209 | 2017-03-01 06:48:19 +0100 | [diff] [blame] | 15 | EXIT=$? |
Sapan Bhatia | eb7819c | 2017-03-01 15:26:17 +0100 | [diff] [blame] | 16 | python $CORDDIR/build/elk-logger/mixpanel --event FINISH --corddir $CORDDIR --finish --status $EXIT |
Sapan Bhatia | a94c2db | 2017-02-27 20:18:24 +0100 | [diff] [blame] | 17 | } |
| 18 | |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 19 | function add_box() { |
| 20 | vagrant box list | grep $1 | grep virtualbox || vagrant box add $1 |
| 21 | vagrant box list | grep $1 | grep libvirt || vagrant mutate $1 libvirt --input-provider virtualbox |
| 22 | } |
| 23 | |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 24 | function run_stage { |
Sapan Bhatia | a94c2db | 2017-02-27 20:18:24 +0100 | [diff] [blame] | 25 | cd $CORDDIR |
Sapan Bhatia | eb7819c | 2017-03-01 15:26:17 +0100 | [diff] [blame] | 26 | python build/elk-logger/mixpanel --event $1-start --corddir $CORDDIR |
Sapan Bhatia | a94c2db | 2017-02-27 20:18:24 +0100 | [diff] [blame] | 27 | |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 28 | echo "==> "$1": Starting" |
| 29 | $1 |
| 30 | echo "==> "$1": Complete" |
Sapan Bhatia | a94c2db | 2017-02-27 20:18:24 +0100 | [diff] [blame] | 31 | |
| 32 | cd $CORDDIR |
Sapan Bhatia | eb7819c | 2017-03-01 15:26:17 +0100 | [diff] [blame] | 33 | python build/elk-logger/mixpanel --event $1-end --corddir $CORDDIR |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 34 | } |
| 35 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 36 | function cleanup_from_previous_test() { |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 37 | echo "## Cleanup ##" |
| 38 | |
Andy Bavier | a4883ba | 2016-12-21 15:46:58 -0500 | [diff] [blame] | 39 | if [ -d $CORDDIR/build ] |
| 40 | then |
| 41 | echo "Destroying all Vagrant VMs" |
| 42 | cd $CORDDIR/build |
| 43 | sudo su $USER -c 'vagrant destroy' |
| 44 | fi |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 45 | |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 46 | echo "Removing $CORDDIR" |
| 47 | cd ~ |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 48 | rm -rf $CORDDIR |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | function bootstrap() { |
Sapan Bhatia | 9569209 | 2017-03-01 06:48:19 +0100 | [diff] [blame] | 52 | echo "Generating build id" |
| 53 | dd bs=18 count=1 if=/dev/urandom | base64 | tr +/ _. > /tmp/cord-build |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 54 | cd ~ |
| 55 | sudo apt-get update |
| 56 | [ -e vagrant_1.8.5_x86_64.deb ] || wget https://releases.hashicorp.com/vagrant/1.8.5/vagrant_1.8.5_x86_64.deb |
Andy Bavier | ad3ea84 | 2016-12-21 16:19:07 -0500 | [diff] [blame] | 57 | dpkg -l vagrant || sudo dpkg -i vagrant_1.8.5_x86_64.deb |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 58 | sudo apt-get -y install qemu-kvm libvirt-bin libvirt-dev curl nfs-kernel-server git build-essential python-pip |
Sapan Bhatia | a94c2db | 2017-02-27 20:18:24 +0100 | [diff] [blame] | 59 | sudo pip install pyparsing python-logstash mixpanel |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 60 | |
| 61 | [ -e ~/.ssh/id_rsa ] || ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 62 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 63 | sudo adduser $USER libvirtd |
| 64 | |
| 65 | sudo curl -o /usr/local/bin/repo https://storage.googleapis.com/git-repo-downloads/repo |
| 66 | sudo chmod a+x /usr/local/bin/repo |
| 67 | |
| 68 | if [ ! -d "$CORDDIR" ] |
| 69 | then |
| 70 | mkdir $CORDDIR && cd $CORDDIR |
Sapan Bhatia | 868e001 | 2017-02-15 22:14:11 -0800 | [diff] [blame] | 71 | |
Zack Williams | f4e6522 | 2017-03-01 14:22:37 -0700 | [diff] [blame^] | 72 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 73 | git config --global user.name 'Test User' |
| 74 | git config --global user.email 'test@null.com' |
| 75 | git config --global color.ui false |
| 76 | |
Scott Baker | 0ab8682 | 2017-02-01 14:33:40 -0800 | [diff] [blame] | 77 | repo init -u https://gerrit.opencord.org/manifest -b $REPO_BRANCH -g build,onos,orchestration,voltha |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 78 | repo sync |
| 79 | |
Zack Williams | dae7ff6 | 2016-11-14 15:20:06 -0700 | [diff] [blame] | 80 | # check out gerrit branches using repo |
| 81 | for gerrit_branch in ${GERRIT_BRANCHES[@]}; do |
| 82 | echo "checking out opencord gerrit branch: $gerrit_branch" |
| 83 | repo download ${gerrit_branch/:/ } |
| 84 | done |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 85 | fi |
| 86 | |
Sapan Bhatia | 868e001 | 2017-02-15 22:14:11 -0800 | [diff] [blame] | 87 | exec > >(tee -i $CORDDIR/install.out) |
| 88 | exec 2>&1 |
| 89 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 90 | cd $CORDDIR/build |
Andy Bavier | ad3ea84 | 2016-12-21 16:19:07 -0500 | [diff] [blame] | 91 | vagrant plugin list | grep vagrant-libvirt || vagrant plugin install vagrant-libvirt --plugin-version 0.0.35 |
| 92 | vagrant plugin list | grep vagrant-mutate || vagrant plugin install vagrant-mutate |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 93 | add_box ubuntu/trusty64 |
Sapan Bhatia | 9569209 | 2017-03-01 06:48:19 +0100 | [diff] [blame] | 94 | |
| 95 | # Start tracking failures from this point |
| 96 | trap finish EXIT |
| 97 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | function cloudlab_setup() { |
Andy Bavier | 8b4ed1f | 2017-02-13 17:06:58 -0800 | [diff] [blame] | 101 | |
| 102 | # The watchdog will sometimes reset groups, turn it off |
| 103 | if [ -e /usr/local/etc/emulab/watchdog ] |
| 104 | then |
| 105 | sudo /usr/bin/perl -w /usr/local/etc/emulab/watchdog stop |
| 106 | sudo mv /usr/local/etc/emulab/watchdog /usr/local/etc/emulab/watchdog-disabled |
| 107 | fi |
| 108 | |
Zack Williams | f4e6522 | 2017-03-01 14:22:37 -0700 | [diff] [blame^] | 109 | # Mount extra space, if haven't already |
| 110 | if [ ! -d /mnt/extra ] |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 111 | then |
Zack Williams | f4e6522 | 2017-03-01 14:22:37 -0700 | [diff] [blame^] | 112 | # for NVME SSD on Utah Cloudlab, not supported by mkextrafs |
| 113 | if $(df | grep -q nvme0n1p1) && [ -e /usr/testbed/bin/mkextrafs ] |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 114 | then |
Zack Williams | f4e6522 | 2017-03-01 14:22:37 -0700 | [diff] [blame^] | 115 | sudo mkdir -p /mnt/extra |
| 116 | |
| 117 | # set partition type of 4th partition to Linux, ignore errors |
| 118 | echo -e "t\n4\n82\np\nw\nq" | sudo fdisk /dev/nvme0n1 || true |
| 119 | |
| 120 | sudo mkfs.ext4 /dev/nvme0n1p4 |
| 121 | echo "/dev/nvme0n1p4 /mnt/extra/ ext4 defaults 0 0" | sudo tee -a /etc/fstab |
| 122 | sudo mount /mnt/extra |
| 123 | mount | grep nvme0n1p4 || (echo "ERROR: NVME mkfs/mount failed, exiting!" && exit 1) |
| 124 | |
| 125 | elif [ -e /usr/testbed/bin/mkextrafs ] # if on Clemson/Wisconsin Cloudlab |
| 126 | then |
| 127 | sudo mkdir -p /mnt/extra |
| 128 | |
| 129 | # Sometimes this command fails on the first try |
| 130 | sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/mnt/extra/" || sudo /usr/testbed/bin/mkextrafs -r /dev/sdb -qf "/mnt/extra/" |
| 131 | |
| 132 | # Check that the mount succeeded (sometimes mkextrafs succeeds but device not mounted) |
| 133 | mount | grep sdb || (echo "ERROR: mkextrafs failed, exiting!" && exit 1) |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 134 | fi |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 135 | fi |
Zack Williams | f4e6522 | 2017-03-01 14:22:37 -0700 | [diff] [blame^] | 136 | |
| 137 | # replace /var/lib/libvirt/images with a symlink |
| 138 | [ -d /var/lib/libvirt/images/ ] && [ ! -h /var/lib/libvirt/images ] && sudo rmdir /var/lib/libvirt/images |
| 139 | sudo mkdir -p /mnt/extra/libvirt_images |
| 140 | |
| 141 | if [ ! -e /var/lib/libvirt/images ] |
| 142 | then |
| 143 | sudo ln -s /mnt/extra/libvirt_images /var/lib/libvirt/images |
| 144 | fi |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 145 | } |
| 146 | |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 147 | function elk_up() { |
| 148 | cd $CORDDIR/build |
| 149 | |
| 150 | sudo su $USER -c 'vagrant up elastic --provider libvirt' |
| 151 | |
| 152 | # This is a workaround for a weird issue with ARP cache timeout breaking 'vagrant ssh' |
| 153 | # It allows SSH'ing to the machine via 'ssh corddev' |
| 154 | sudo su $USER -c "vagrant ssh-config elastic > $SSHCONFIG" |
| 155 | |
| 156 | cd $CORDDIR |
| 157 | if [ ! -f /tmp/elk-patch-applied ]; then |
| 158 | touch /tmp/elk-patch-applied |
| 159 | sh build/scripts/repo-apply.sh build/elk-logger/elk-ciab.diff |
| 160 | fi |
| 161 | |
| 162 | sudo chmod +x build/elk-logger/logstash_tail |
Zack Williams | f4e6522 | 2017-03-01 14:22:37 -0700 | [diff] [blame^] | 163 | build/elk-logger/logstash_tail --file install.out --hostport 10.100.198.222:5617 & |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 164 | } |
| 165 | |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 166 | function vagrant_vms_up() { |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 167 | cd $CORDDIR/build |
| 168 | |
Andy Bavier | 65c8e15 | 2016-12-22 16:01:27 -0500 | [diff] [blame] | 169 | sudo su $USER -c 'vagrant up corddev prod --provider libvirt' |
Andy Bavier | a69ee72 | 2016-11-17 07:26:01 -0800 | [diff] [blame] | 170 | |
| 171 | # This is a workaround for a weird issue with ARP cache timeout breaking 'vagrant ssh' |
| 172 | # It allows SSH'ing to the machine via 'ssh corddev' |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 173 | sudo su $USER -c "vagrant ssh-config corddev prod > $SSHCONFIG" |
| 174 | |
| 175 | scp ~/.ssh/id_rsa* corddev:.ssh |
| 176 | ssh corddev "chmod go-r ~/.ssh/id_rsa" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | function install_head_node() { |
| 180 | cd $CORDDIR/build |
| 181 | |
Andy Bavier | a69ee72 | 2016-11-17 07:26:01 -0800 | [diff] [blame] | 182 | # SSH config saved earlier allows us to connect to VM without running 'vagrant' |
Zack Williams | 0620c93 | 2017-01-25 14:36:31 -0700 | [diff] [blame] | 183 | ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG fetch" |
| 184 | ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG buildImages" |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 185 | ssh corddev "cd /cord/build; ping -c 3 prod; ./gradlew -PdeployConfig=$VMDIR/$CONFIG -PtargetReg=10.100.198.201:5000 publish" |
Andy Bavier | a69ee72 | 2016-11-17 07:26:01 -0800 | [diff] [blame] | 186 | ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG deploy" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | function set_up_maas_user() { |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 190 | # Set up MAAS user on server to restart nodes via libvirt |
| 191 | grep maas /etc/passwd || sudo useradd -m maas |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 192 | sudo adduser maas libvirtd |
| 193 | |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 194 | # Copy generated public key to maas user's authorized_keys |
| 195 | sudo su maas -c "mkdir -p ~/.ssh" |
| 196 | sudo cp $HOME/.ssh/id_rsa.pub ~maas/.ssh/authorized_keys |
| 197 | sudo chown maas:maas ~maas/.ssh/authorized_keys |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 198 | |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 199 | # Copy generated private key to maas user's home dir in prod VM |
| 200 | scp $HOME/.ssh/id_rsa prod:/tmp |
| 201 | ssh prod "sudo mkdir -p ~maas/.ssh" |
| 202 | ssh prod "sudo cp /tmp/id_rsa ~maas/.ssh/id_rsa" |
| 203 | ssh prod "sudo chown -R maas:maas ~maas/.ssh" |
| 204 | } |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 205 | |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 206 | function turn_off_learning () { |
| 207 | NET=$1 |
| 208 | BRIDGE=`sudo virsh net-info $NET|grep "Bridge:"|awk '{print $2}'` |
| 209 | sudo brctl setageing $BRIDGE 0 |
| 210 | sudo brctl stp $BRIDGE off |
| 211 | } |
| 212 | |
| 213 | function leaf_spine_up() { |
| 214 | cd $CORDDIR/build |
| 215 | |
| 216 | if [[ $FABRIC -ne 0 ]] |
| 217 | then |
| 218 | sudo su $USER -c "FABRIC=$FABRIC vagrant up leaf-1 leaf-2 spine-1 spine-2 --provider libvirt" |
| 219 | else |
| 220 | # Linux bridging seems to be having issues with two spine switches |
| 221 | sudo su $USER -c "FABRIC=$FABRIC vagrant up leaf-1 leaf-2 spine-1 --provider libvirt" |
| 222 | fi |
| 223 | |
| 224 | # Turn off MAC learning on "links" -- i.e., bridges created by libvirt. |
| 225 | # Without this, sometimes packets are dropped because the bridges |
| 226 | # think they are not local -- this needs further investigation. |
| 227 | # A better solution might be to replace the bridges with UDP tunnels, but this |
| 228 | # is not supported with the version of libvirt available on Ubuntu 14.04. |
| 229 | turn_off_learning head-node-leaf-1 |
| 230 | turn_off_learning compute-node-1-leaf-1 |
| 231 | turn_off_learning compute-node-2-leaf-2 |
| 232 | turn_off_learning compute-node-3-leaf-2 |
| 233 | turn_off_learning leaf-1-spine-1 |
| 234 | turn_off_learning leaf-1-spine-2 |
| 235 | turn_off_learning leaf-2-spine-1 |
| 236 | turn_off_learning leaf-2-spine-2 |
| 237 | } |
| 238 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 239 | function add_compute_node() { |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 240 | echo add_compute_node: $1 $2 |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 241 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 242 | cd $CORDDIR/build |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 243 | sudo su $USER -c "vagrant up $1 --provider libvirt" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 244 | |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 245 | # Set up power cycling for the compute node and wait for it to be provisioned |
| 246 | ssh prod "cd /cord/build/ansible; ansible-playbook maas-provision.yml --extra-vars \"maas_user=maas vagrant_name=$2\"" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 247 | |
| 248 | echo "" |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 249 | echo "$1 is fully provisioned!" |
| 250 | } |
| 251 | |
| 252 | function initialize_fabric() { |
| 253 | echo "Initializing fabric" |
| 254 | ssh prod "cd /cord/build/platform-install; ansible-playbook -i /etc/maas/ansible/pod-inventory cord-refresh-fabric.yml" |
| 255 | |
| 256 | echo "Fabric ping test" |
| 257 | ssh prod "cd /cord/build/platform-install; ansible-playbook -i /etc/maas/ansible/pod-inventory cord-fabric-pingtest.yml" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | function run_e2e_test () { |
| 261 | cd $CORDDIR/build |
| 262 | |
Andy Bavier | 2505f59 | 2016-11-11 15:58:55 -0500 | [diff] [blame] | 263 | # User has been added to the lbvirtd group, but su $USER to be safe |
Andy Bavier | a69ee72 | 2016-11-17 07:26:01 -0800 | [diff] [blame] | 264 | ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG postDeployTests" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | function run_diagnostics() { |
Zack Williams | 4fd3dcc | 2017-02-08 20:46:14 -0700 | [diff] [blame] | 268 | ssh corddev "cd /cord/build; ./gradlew -PdeployConfig=$VMDIR/$CONFIG PIrunDiag" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | # Parse options |
Zack Williams | dae7ff6 | 2016-11-14 15:20:06 -0700 | [diff] [blame] | 272 | GERRIT_BRANCHES= |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 273 | RUN_TEST=0 |
Andy Bavier | 5c2e4fa | 2016-10-31 13:50:52 -0400 | [diff] [blame] | 274 | SETUP_ONLY=0 |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 275 | DIAGNOSTICS=0 |
| 276 | CLEANUP=0 |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 277 | FABRIC=0 |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 278 | #By default, cord-in-a-box creates 1 compute node. If more than one compute is |
| 279 | #needed, use -n option |
| 280 | NUM_COMPUTE_NODES=1 |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 281 | |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 282 | while getopts "b:cdfhn:stv" opt; do |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 283 | case ${opt} in |
Zack Williams | dae7ff6 | 2016-11-14 15:20:06 -0700 | [diff] [blame] | 284 | b ) GERRIT_BRANCHES+=("$OPTARG") |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 285 | ;; |
| 286 | c ) CLEANUP=1 |
| 287 | ;; |
| 288 | d ) DIAGNOSTICS=1 |
| 289 | ;; |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 290 | f ) FABRIC=1 |
| 291 | ;; |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 292 | h ) echo "Usage:" |
| 293 | echo " $0 install OpenStack and prep XOS and ONOS VMs [default]" |
Zack Williams | dae7ff6 | 2016-11-14 15:20:06 -0700 | [diff] [blame] | 294 | echo " $0 -b <project:changeset/revision> checkout a changesets from gerrit. Can" |
| 295 | echo " be used multiple times." |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 296 | echo " $0 -c cleanup from previous test" |
| 297 | echo " $0 -d run diagnostic collector" |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 298 | echo " $0 -f use ONOS fabric (EXPERIMENTAL)" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 299 | echo " $0 -h display this help message" |
Zack Williams | a9e76ec | 2017-01-20 16:17:35 -0700 | [diff] [blame] | 300 | echo " $0 -n # number of compute nodes to setup. Currently max 2 nodes can be supported" |
Andy Bavier | 5c2e4fa | 2016-10-31 13:50:52 -0400 | [diff] [blame] | 301 | echo " $0 -s run initial setup phase only (don't start building CORD)" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 302 | echo " $0 -t do install, bring up cord-pod configuration, run E2E test" |
Andy Bavier | d116510 | 2017-01-13 16:38:57 -0500 | [diff] [blame] | 303 | echo " $0 -v print CiaB version and exit" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 304 | exit 0 |
| 305 | ;; |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 306 | n ) NUM_COMPUTE_NODES=$OPTARG |
| 307 | ;; |
Andy Bavier | 5c2e4fa | 2016-10-31 13:50:52 -0400 | [diff] [blame] | 308 | s ) SETUP_ONLY=1 |
| 309 | ;; |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 310 | t ) RUN_TEST=1 |
| 311 | ;; |
Andy Bavier | d116510 | 2017-01-13 16:38:57 -0500 | [diff] [blame] | 312 | v ) echo "$VERSION_STRING ($REPO_BRANCH branch)" |
| 313 | exit 0 |
| 314 | ;; |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 315 | \? ) echo "Invalid option: -$OPTARG" |
| 316 | exit 1 |
| 317 | ;; |
| 318 | esac |
| 319 | done |
| 320 | |
| 321 | # What to do |
| 322 | if [[ $CLEANUP -eq 1 ]] |
| 323 | then |
Sapan Bhatia | 3f454b3 | 2017-03-01 05:24:19 +0100 | [diff] [blame] | 324 | cleanup_from_previous_test |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 325 | fi |
| 326 | |
Andy Bavier | d116510 | 2017-01-13 16:38:57 -0500 | [diff] [blame] | 327 | echo "" |
| 328 | echo "Preparing to install $VERSION_STRING ($REPO_BRANCH branch)" |
| 329 | echo "" |
| 330 | |
Sapan Bhatia | a94c2db | 2017-02-27 20:18:24 +0100 | [diff] [blame] | 331 | bootstrap |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 332 | run_stage cloudlab_setup |
| 333 | run_stage elk_up |
| 334 | run_stage vagrant_vms_up |
Andy Bavier | 5c2e4fa | 2016-10-31 13:50:52 -0400 | [diff] [blame] | 335 | |
| 336 | if [[ $SETUP_ONLY -ne 0 ]] |
| 337 | then |
| 338 | echo "Finished build environment setup, exiting..." |
| 339 | exit 0 |
| 340 | fi |
| 341 | |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 342 | run_stage install_head_node |
| 343 | run_stage set_up_maas_user |
| 344 | run_stage leaf_spine_up |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 345 | |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 346 | if [[ $NUM_COMPUTE_NODES -gt 3 ]] |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 347 | then |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 348 | echo "currently max only three compute nodes can be supported..." |
| 349 | NUM_COMPUTE_NODES=3 |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 350 | fi |
| 351 | |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 352 | echo "==> Adding compute nodes: Starting" |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 353 | for i in `seq 1 $NUM_COMPUTE_NODES`; |
| 354 | do |
| 355 | echo adding the compute node: compute-node-$i |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 356 | add_compute_node compute-node-$i build_compute-node-$i |
Srikanth Vavilapalli | b1c4da0 | 2016-11-17 15:24:28 -0600 | [diff] [blame] | 357 | done |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 358 | echo "==> Adding compute nodes: Complete" |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 359 | |
Zack Williams | 4fd3dcc | 2017-02-08 20:46:14 -0700 | [diff] [blame] | 360 | # run diagnostics both before/after the fabric/e2e tests |
| 361 | if [[ $DIAGNOSTICS -eq 1 ]] |
| 362 | then |
| 363 | run_diagnostics |
| 364 | fi |
| 365 | |
| 366 | |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 367 | if [[ $FABRIC -ne 0 ]] |
| 368 | then |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 369 | run_stage initialize_fabric |
Andy Bavier | 0f07bb3 | 2017-01-17 10:20:26 -0500 | [diff] [blame] | 370 | fi |
| 371 | |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 372 | if [[ $RUN_TEST -eq 1 ]] |
| 373 | then |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 374 | run_stage run_e2e_test |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 375 | fi |
| 376 | |
| 377 | if [[ $DIAGNOSTICS -eq 1 ]] |
| 378 | then |
Sapan Bhatia | 01ddea6 | 2017-02-10 11:28:48 -0800 | [diff] [blame] | 379 | run_stage run_diagnostics |
Andy Bavier | 99c11d3 | 2016-09-14 17:21:20 -0400 | [diff] [blame] | 380 | fi |
| 381 | |
| 382 | exit 0 |