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