blob: 78eca1bda259423cf43b8c4d0f03964bfbe1ec8d [file] [log] [blame]
Zack Williams961ffcd2016-05-20 07:03:35 -07001#!/usr/bin/env bash
Andy Bavierea5b44c2016-04-08 16:12:30 -04002
Andy Bavier0acc3642016-05-04 16:17:07 -07003function cleanup_from_previous_test() {
Zack Williams5028fb42016-06-01 14:52:29 -07004 echo "## Cleanup ##"
5
6 echo "Destroying juju environment"
7 juju destroy-environment --force -y manual
8
Andy Bavierde3f4672016-06-01 17:02:42 -04009 VMS=$( sudo uvt-kvm list )
Andy Bavier0acc3642016-05-04 16:17:07 -070010 for VM in $VMS
11 do
Zack Williams5028fb42016-06-01 14:52:29 -070012 echo "Destroying $VM"
Andy Bavier97faeec2016-05-10 13:23:04 -040013 sudo uvt-kvm destroy $VM
Andy Bavier0acc3642016-05-04 16:17:07 -070014 done
15
Zack Williams5028fb42016-06-01 14:52:29 -070016 echo "Cleaning up files"
Andy Bavier0acc3642016-05-04 16:17:07 -070017 rm -rf ~/.juju
18 rm -f ~/.ssh/known_hosts
19 rm -rf ~/openstack-cluster-setup
20
Zack Williams5028fb42016-06-01 14:52:29 -070021 echo "Cleaning up libvirt/dnsmasq"
Zack Williams17508be2016-05-31 21:52:35 -070022 sudo rm -f /var/lib/libvirt/dnsmasq/xos-mgmtbr.leases
23 sudo killall dnsmasq
Zack Williams5028fb42016-06-01 14:52:29 -070024 sudo service libvirt-bin restart
Andy Bavier0acc3642016-05-04 16:17:07 -070025}
26
Andy Bavier76349042016-05-04 16:10:29 -070027function bootstrap() {
28 cd ~
29 sudo apt-get update
Zack Williams65b72c82016-05-21 21:52:46 -070030 sudo apt-get -y install software-properties-common git mosh tmux dnsutils python-netaddr
31 sudo add-apt-repository -y ppa:ansible/ansible
32 sudo apt-get update
33 sudo apt-get install -y ansible
34
35 [ -e ~/.ssh/id_rsa ] || ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
36 cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
37
Andy Bavier76349042016-05-04 16:10:29 -070038 git clone https://github.com/open-cloud/openstack-cluster-setup.git
39 cd ~/openstack-cluster-setup
Andy Bavierea5b44c2016-04-08 16:12:30 -040040
Zack Williams7e19a8a2016-05-24 06:42:47 -070041 sed -i "s/ubuntu/`whoami`/" $INVENTORY
Zack Williams65b72c82016-05-21 21:52:46 -070042 cp vars/example_keystone.yml vars/cord_keystone.yml
Andy Bavierea5b44c2016-04-08 16:12:30 -040043
Andy Bavier76349042016-05-04 16:10:29 -070044 # Log into the local node once to get host key
45 ssh -o StrictHostKeyChecking=no localhost "ls > /dev/null"
46}
47
48function setup_openstack() {
Zack Williamsf72e7b62016-06-02 09:57:23 -070049 # Run the playbook, but check to see if we're on cloudlab
50 if [[ -x /usr/testbed/bin/mkextrafs ]]
51 then
52 ansible-playbook -i $INVENTORY cord-single-playbook.yml --extra-vars="on-clouldlab=true"
53 else
54 ansible-playbook -i $INVENTORY cord-single-playbook.yml
55 fi
Andy Bavier76349042016-05-04 16:10:29 -070056}
57
Andy Bavier9927f962016-05-20 14:09:36 -040058function build_xos_docker_images() {
Andy Bavier97faeec2016-05-10 13:23:04 -040059 echo ""
Andy Bavier9927f962016-05-20 14:09:36 -040060 echo "Checking out XOS branch $BUILD_BRANCH"
Andy Bavier97faeec2016-05-10 13:23:04 -040061 ssh ubuntu@xos "cd xos; git config --global user.email 'ubuntu@localhost'; git config --global user.name 'XOS ExampleService'"
Andy Bavier9927f962016-05-20 14:09:36 -040062 ssh ubuntu@xos "cd xos; git checkout $BUILD_BRANCH"
Zack Williams97225f82016-05-24 08:23:37 -070063
Andy Bavier9927f962016-05-20 14:09:36 -040064 if [[ $EXAMPLESERVICE -eq 1 ]]
65 then
66 echo ""
67 echo "Adding exampleservice to XOS"
68 ssh ubuntu@xos "cd xos; git cherry-pick 775e00549e535803522fbcd70152e5e1b0629c83"
69 fi
Zack Williams97225f82016-05-24 08:23:37 -070070
Andy Bavier97faeec2016-05-10 13:23:04 -040071 echo "Rebuilding XOS containers"
72 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make local_containers"
Andy Bavier76349042016-05-04 16:10:29 -070073}
74
75function setup_xos() {
Zack Williamsd78bbb42016-05-23 08:53:20 -070076
Andy Bavier76349042016-05-04 16:10:29 -070077 echo "Setting up XOS, will take a few minutes"
Zack Williams3ecbfd02016-05-22 15:30:21 -070078 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make"
Andy Bavier76349042016-05-04 16:10:29 -070079 echo ""
80 echo "Pause 2 minutes"
81 sleep 120
82
Zack Williams3ecbfd02016-05-22 15:30:21 -070083 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make vtn"
Andy Bavier76349042016-05-04 16:10:29 -070084 echo ""
85 echo "Pause 30 seconds"
86 sleep 30
87
Zack Williams3ecbfd02016-05-22 15:30:21 -070088 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make cord"
Zack Williams455cec42016-05-25 16:07:36 -070089
90 if [[ $EXAMPLESERVICE -eq 1 ]]
91 then
92 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make exampleservice"
93 fi
Andy Bavier76349042016-05-04 16:10:29 -070094}
95
96function setup_test_client() {
Zack Williams3ecbfd02016-05-22 15:30:21 -070097 ssh ubuntu@nova-compute "sudo apt-get -y install lxc"
Andy Bavier76349042016-05-04 16:10:29 -070098
99 # Change default bridge
Zack Williams3ecbfd02016-05-22 15:30:21 -0700100 ssh ubuntu@nova-compute "sudo sed -i 's/lxcbr0/databr/' /etc/lxc/default.conf"
Andy Bavier76349042016-05-04 16:10:29 -0700101
102 # Create test client
Zack Williams3ecbfd02016-05-22 15:30:21 -0700103 ssh ubuntu@nova-compute "sudo lxc-create -t ubuntu -n testclient"
104 ssh ubuntu@nova-compute "sudo lxc-start -n testclient"
Andy Bavier76349042016-05-04 16:10:29 -0700105
106 # Configure network interface inside of test client with s-tag and c-tag
Zack Williams3ecbfd02016-05-22 15:30:21 -0700107 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ip link add link eth0 name eth0.222 type vlan id 222"
108 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ip link add link eth0.222 name eth0.222.111 type vlan id 111"
109 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ifconfig eth0.222 up"
110 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ifconfig eth0.222.111 up"
Andy Bavier76349042016-05-04 16:10:29 -0700111}
112
113function run_e2e_test() {
114 source ~/admin-openrc.sh
115
116 echo "*** Wait for vSG VM to come up"
117 i=0
Zack Williams961ffcd2016-05-20 07:03:35 -0700118
Andy Bavier97faeec2016-05-10 13:23:04 -0400119 until nova list --all-tenants|grep 'vsg.*ACTIVE' > /dev/null
Andy Bavier76349042016-05-04 16:10:29 -0700120 do
Andy Bavier97faeec2016-05-10 13:23:04 -0400121 sleep 60
122 (( i += 1 ))
123 echo "Waited $i minutes"
Andy Bavier76349042016-05-04 16:10:29 -0700124 done
125
126 # get mgmt IP address
127 ID=$( nova list --all-tenants|grep mysite_vsg|awk '{print $2}' )
128 MGMTIP=$( nova interface-list $ID|grep 172.27|awk '{print $8}' )
129
130 echo ""
131 echo "*** ssh into vsg VM, wait for Docker container to come up"
132 i=0
133 until ssh -o ProxyCommand="ssh -W %h:%p ubuntu@nova-compute" ubuntu@$MGMTIP "sudo docker ps|grep vcpe" > /dev/null
134 do
Andy Bavier97faeec2016-05-10 13:23:04 -0400135 sleep 60
136 (( i += 1 ))
137 echo "Waited $i minutes"
Andy Bavier76349042016-05-04 16:10:29 -0700138 done
139
140 echo ""
141 echo "*** Run dhclient in test client"
Zack Williams961ffcd2016-05-20 07:03:35 -0700142
Zack Williams3ecbfd02016-05-22 15:30:21 -0700143 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- dhclient eth0.222.111" > /dev/null
Andy Bavier76349042016-05-04 16:10:29 -0700144
145 echo ""
146 echo "*** Routes in test client"
Zack Williams3ecbfd02016-05-22 15:30:21 -0700147 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- route -n"
Andy Bavier76349042016-05-04 16:10:29 -0700148
Andy Bavier76349042016-05-04 16:10:29 -0700149 echo ""
150 echo "*** Test external connectivity in test client"
Zack Williams3ecbfd02016-05-22 15:30:21 -0700151 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ping -c 3 8.8.8.8"
Andy Bavier76349042016-05-04 16:10:29 -0700152
153 echo ""
154 if [ $? -eq 0 ]
155 then
Andy Bavier97faeec2016-05-10 13:23:04 -0400156 echo "*** [PASSED] End-to-end connectivity test"
Andy Bavier76349042016-05-04 16:10:29 -0700157 else
Andy Bavier97faeec2016-05-10 13:23:04 -0400158 echo "*** [FAILED] End-to-end connectivity test"
159 exit 1
Andy Bavier76349042016-05-04 16:10:29 -0700160 fi
161}
162
Andy Bavier97faeec2016-05-10 13:23:04 -0400163function run_exampleservice_test () {
164 source ~/admin-openrc.sh
165
166 echo "*** Wait for exampleservice VM to come up."
Andy Bavier9927f962016-05-20 14:09:36 -0400167 echo "!!! NOTE that currently the VM will only be created after you login"
168 echo "!!! to XOS and manually create an ExampleService tenant."
Andy Bavier97faeec2016-05-10 13:23:04 -0400169 i=0
170 until nova list --all-tenants|grep exampleservice.*ACTIVE > /dev/null
171 do
172 sleep 60
173 (( i += 1 ))
174 echo "Waited $i minutes"
175 done
176
177 # get mgmt IP address
178 ID=$( nova list --all-tenants|grep mysite_exampleservice|awk '{print $2}' )
179 MGMTIP=$( nova interface-list $ID|grep 172.27|awk '{print $8}' )
180 PUBLICIP=$( nova interface-list $ID|grep 10.168|awk '{print $8}' )
181
182 echo ""
183 echo "*** ssh into exampleservice VM, wait for Apache come up"
184 i=0
185 until ssh -o ProxyCommand="ssh -W %h:%p ubuntu@nova-compute" ubuntu@$MGMTIP "ls /var/run/apache2/apache2.pid"
186 do
187 sleep 60
188 (( i += 1 ))
189 echo "Waited $i minutes"
190 done
191
192
193 echo ""
194 echo "*** Install curl in test client"
195 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- apt-get -y install curl"
196
197 echo ""
198 echo "*** Test connectivity to ExampleService from test client"
199 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- curl -s http://$PUBLICIP"
200}
201
Andy Bavier76349042016-05-04 16:10:29 -0700202# Parse options
203RUN_TEST=0
Andy Bavier97faeec2016-05-10 13:23:04 -0400204EXAMPLESERVICE=0
Zack Williams80d4f222016-06-01 15:42:03 -0700205BUILD_BRANCH="master"
Zack Williamsed9ced02016-05-24 06:37:04 -0700206INVENTORY="inventory/single-localhost"
207
Zack Williams7bc0cbb2016-05-24 06:57:22 -0700208while getopts "b:ehi:t" opt; do
Andy Bavier76349042016-05-04 16:10:29 -0700209 case ${opt} in
Andy Bavier9927f962016-05-20 14:09:36 -0400210 b ) BUILD_BRANCH=$OPTARG
Andy Bavier76349042016-05-04 16:10:29 -0700211 ;;
Andy Bavier97faeec2016-05-10 13:23:04 -0400212 e ) EXAMPLESERVICE=1
213 ;;
Andy Bavier9927f962016-05-20 14:09:36 -0400214 h ) echo "Usage:"
Zack Williamsed9ced02016-05-24 06:37:04 -0700215 echo " $0 install OpenStack and prep XOS and ONOS VMs [default]"
Zack Williams80d4f222016-06-01 15:42:03 -0700216 echo " $0 -b <branch> build XOS containers based on GitHub <branch>"
Zack Williamsed9ced02016-05-24 06:37:04 -0700217 echo " $0 -e add exampleservice to XOS"
218 echo " $0 -h display this help message"
219 echo " $0 -i <inv_file> specify an inventory file (default is inventory/single-localhost)"
220 echo " $0 -t do install, bring up cord-pod configuration, run E2E test"
Andy Baviercb024332016-04-29 15:52:26 -0400221 exit 0
222 ;;
Zack Williamsed9ced02016-05-24 06:37:04 -0700223 i ) INVENTORY=$OPTARG
Andy Baviercb024332016-04-29 15:52:26 -0400224 ;;
Zack Williamsed9ced02016-05-24 06:37:04 -0700225 t ) RUN_TEST=1
Andy Baviercb024332016-04-29 15:52:26 -0400226 ;;
Andy Bavier9927f962016-05-20 14:09:36 -0400227 \? ) echo "Invalid option: -$OPTARG"
Andy Bavier76349042016-05-04 16:10:29 -0700228 exit 1
229 ;;
230 esac
Andy Bavierea5b44c2016-04-08 16:12:30 -0400231done
232
Andy Bavier76349042016-05-04 16:10:29 -0700233# What to do
Andy Bavier0acc3642016-05-04 16:17:07 -0700234if [[ $RUN_TEST -eq 1 ]]
235then
236 cleanup_from_previous_test
237fi
238
Andy Bavierf0001732016-05-05 09:21:49 -0700239set -e
240
Andy Bavier76349042016-05-04 16:10:29 -0700241bootstrap
242setup_openstack
Andy Bavier76349042016-05-04 16:10:29 -0700243
244if [[ $RUN_TEST -eq 1 ]]
245then
Zack Williams80d4f222016-06-01 15:42:03 -0700246 build_xos_docker_images
Andy Bavier76349042016-05-04 16:10:29 -0700247 setup_xos
248 setup_test_client
249 run_e2e_test
Andy Bavier97faeec2016-05-10 13:23:04 -0400250 if [[ $EXAMPLESERVICE -eq 1 ]]
251 then
252 run_exampleservice_test
253 fi
Andy Bavier76349042016-05-04 16:10:29 -0700254fi
Andy Bavier97faeec2016-05-10 13:23:04 -0400255
256exit 0
Zack Williams961ffcd2016-05-20 07:03:35 -0700257