blob: fe1c123389b36f7ff32ca5c8fe99f17109d7b791 [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 Williams4e5d1d22016-06-13 11:10:03 -070030 sudo apt-get -y install software-properties-common curl git mosh tmux dnsutils python-netaddr
Zack Williams65b72c82016-05-21 21:52:46 -070031 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
Zack Williams32d711d2016-06-02 10:53:30 -070052 ansible-playbook -i $INVENTORY cord-single-playbook.yml --extra-vars="on_cloudlab=True"
Zack Williamsf72e7b62016-06-02 09:57:23 -070053 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"
Andy Bavier676c6462016-06-06 14:31:20 -040068 ssh ubuntu@xos "cd xos; git cherry-pick cd6e972210f4134ffb2f7a36fb3c4baf33f02bef"
Andy Bavier9927f962016-05-20 14:09:36 -040069 fi
Zack Williams97225f82016-05-24 08:23:37 -070070
Andy Bavier97faeec2016-05-10 13:23:04 -040071 echo "Rebuilding XOS containers"
Zack Williams72a9ab42016-06-08 08:32:49 -070072 ssh ubuntu@xos "cd xos/containers/xos; make base"
Andy Bavier97faeec2016-05-10 13:23:04 -040073 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make local_containers"
Andy Bavier76349042016-05-04 16:10:29 -070074}
75
76function setup_xos() {
Zack Williamsd78bbb42016-05-23 08:53:20 -070077
Andy Bavier76349042016-05-04 16:10:29 -070078 echo "Setting up XOS, will take a few minutes"
Zack Williams3ecbfd02016-05-22 15:30:21 -070079 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make"
Andy Bavier76349042016-05-04 16:10:29 -070080 echo ""
81 echo "Pause 2 minutes"
82 sleep 120
83
Andy Bavierada2b3b2016-06-12 10:33:01 -040084 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make vtn; make fabric"
Andy Bavier76349042016-05-04 16:10:29 -070085 echo ""
86 echo "Pause 30 seconds"
87 sleep 30
88
Andy Bavier0d0d0f72016-06-12 13:47:12 -040089 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make cord"
Zack Williams455cec42016-05-25 16:07:36 -070090
91 if [[ $EXAMPLESERVICE -eq 1 ]]
92 then
93 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make exampleservice"
94 fi
Andy Bavier0d0d0f72016-06-12 13:47:12 -040095
96 echo ""
97 echo "(Temp workaround for bug in Synchronizer) Pause 60 seconds"
98 sleep 60
99 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make vtn"
Andy Bavier76349042016-05-04 16:10:29 -0700100}
101
102function setup_test_client() {
Zack Williams3ecbfd02016-05-22 15:30:21 -0700103 ssh ubuntu@nova-compute "sudo apt-get -y install lxc"
Andy Bavier76349042016-05-04 16:10:29 -0700104
105 # Change default bridge
Zack Williams3ecbfd02016-05-22 15:30:21 -0700106 ssh ubuntu@nova-compute "sudo sed -i 's/lxcbr0/databr/' /etc/lxc/default.conf"
Andy Bavier76349042016-05-04 16:10:29 -0700107
108 # Create test client
Zack Williams3ecbfd02016-05-22 15:30:21 -0700109 ssh ubuntu@nova-compute "sudo lxc-create -t ubuntu -n testclient"
110 ssh ubuntu@nova-compute "sudo lxc-start -n testclient"
Andy Bavier76349042016-05-04 16:10:29 -0700111
112 # Configure network interface inside of test client with s-tag and c-tag
Zack Williams3ecbfd02016-05-22 15:30:21 -0700113 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ip link add link eth0 name eth0.222 type vlan id 222"
114 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ip link add link eth0.222 name eth0.222.111 type vlan id 111"
115 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ifconfig eth0.222 up"
116 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ifconfig eth0.222.111 up"
Andy Bavier76349042016-05-04 16:10:29 -0700117}
118
119function run_e2e_test() {
120 source ~/admin-openrc.sh
121
122 echo "*** Wait for vSG VM to come up"
123 i=0
Zack Williams961ffcd2016-05-20 07:03:35 -0700124
Andy Bavier97faeec2016-05-10 13:23:04 -0400125 until nova list --all-tenants|grep 'vsg.*ACTIVE' > /dev/null
Andy Bavier76349042016-05-04 16:10:29 -0700126 do
Andy Bavier97faeec2016-05-10 13:23:04 -0400127 sleep 60
128 (( i += 1 ))
129 echo "Waited $i minutes"
Andy Bavier76349042016-05-04 16:10:29 -0700130 done
131
132 # get mgmt IP address
133 ID=$( nova list --all-tenants|grep mysite_vsg|awk '{print $2}' )
134 MGMTIP=$( nova interface-list $ID|grep 172.27|awk '{print $8}' )
135
136 echo ""
137 echo "*** ssh into vsg VM, wait for Docker container to come up"
138 i=0
139 until ssh -o ProxyCommand="ssh -W %h:%p ubuntu@nova-compute" ubuntu@$MGMTIP "sudo docker ps|grep vcpe" > /dev/null
140 do
Andy Bavier97faeec2016-05-10 13:23:04 -0400141 sleep 60
142 (( i += 1 ))
143 echo "Waited $i minutes"
Andy Bavier76349042016-05-04 16:10:29 -0700144 done
145
146 echo ""
147 echo "*** Run dhclient in test client"
Zack Williams961ffcd2016-05-20 07:03:35 -0700148
Zack Williams3ecbfd02016-05-22 15:30:21 -0700149 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- dhclient eth0.222.111" > /dev/null
Andy Bavier76349042016-05-04 16:10:29 -0700150
151 echo ""
152 echo "*** Routes in test client"
Zack Williams3ecbfd02016-05-22 15:30:21 -0700153 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- route -n"
Andy Bavier76349042016-05-04 16:10:29 -0700154
Andy Bavier76349042016-05-04 16:10:29 -0700155 echo ""
156 echo "*** Test external connectivity in test client"
Zack Williams3ecbfd02016-05-22 15:30:21 -0700157 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ping -c 3 8.8.8.8"
Andy Bavier76349042016-05-04 16:10:29 -0700158
159 echo ""
160 if [ $? -eq 0 ]
161 then
Andy Bavier97faeec2016-05-10 13:23:04 -0400162 echo "*** [PASSED] End-to-end connectivity test"
Andy Bavier76349042016-05-04 16:10:29 -0700163 else
Andy Bavier97faeec2016-05-10 13:23:04 -0400164 echo "*** [FAILED] End-to-end connectivity test"
165 exit 1
Andy Bavier76349042016-05-04 16:10:29 -0700166 fi
167}
168
Andy Bavier97faeec2016-05-10 13:23:04 -0400169function run_exampleservice_test () {
170 source ~/admin-openrc.sh
171
172 echo "*** Wait for exampleservice VM to come up."
Andy Bavier9927f962016-05-20 14:09:36 -0400173 echo "!!! NOTE that currently the VM will only be created after you login"
174 echo "!!! to XOS and manually create an ExampleService tenant."
Andy Bavier97faeec2016-05-10 13:23:04 -0400175 i=0
176 until nova list --all-tenants|grep exampleservice.*ACTIVE > /dev/null
177 do
178 sleep 60
179 (( i += 1 ))
180 echo "Waited $i minutes"
181 done
182
183 # get mgmt IP address
184 ID=$( nova list --all-tenants|grep mysite_exampleservice|awk '{print $2}' )
185 MGMTIP=$( nova interface-list $ID|grep 172.27|awk '{print $8}' )
186 PUBLICIP=$( nova interface-list $ID|grep 10.168|awk '{print $8}' )
187
188 echo ""
189 echo "*** ssh into exampleservice VM, wait for Apache come up"
190 i=0
191 until ssh -o ProxyCommand="ssh -W %h:%p ubuntu@nova-compute" ubuntu@$MGMTIP "ls /var/run/apache2/apache2.pid"
192 do
193 sleep 60
194 (( i += 1 ))
195 echo "Waited $i minutes"
196 done
197
198
199 echo ""
200 echo "*** Install curl in test client"
201 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- apt-get -y install curl"
202
203 echo ""
204 echo "*** Test connectivity to ExampleService from test client"
205 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- curl -s http://$PUBLICIP"
206}
207
Andy Bavier76349042016-05-04 16:10:29 -0700208# Parse options
209RUN_TEST=0
Andy Bavier97faeec2016-05-10 13:23:04 -0400210EXAMPLESERVICE=0
Zack Williams80d4f222016-06-01 15:42:03 -0700211BUILD_BRANCH="master"
Zack Williamsed9ced02016-05-24 06:37:04 -0700212INVENTORY="inventory/single-localhost"
213
Zack Williams7bc0cbb2016-05-24 06:57:22 -0700214while getopts "b:ehi:t" opt; do
Andy Bavier76349042016-05-04 16:10:29 -0700215 case ${opt} in
Andy Bavier9927f962016-05-20 14:09:36 -0400216 b ) BUILD_BRANCH=$OPTARG
Andy Bavier76349042016-05-04 16:10:29 -0700217 ;;
Andy Bavier97faeec2016-05-10 13:23:04 -0400218 e ) EXAMPLESERVICE=1
219 ;;
Andy Bavier9927f962016-05-20 14:09:36 -0400220 h ) echo "Usage:"
Zack Williamsed9ced02016-05-24 06:37:04 -0700221 echo " $0 install OpenStack and prep XOS and ONOS VMs [default]"
Zack Williams80d4f222016-06-01 15:42:03 -0700222 echo " $0 -b <branch> build XOS containers based on GitHub <branch>"
Zack Williamsed9ced02016-05-24 06:37:04 -0700223 echo " $0 -e add exampleservice to XOS"
224 echo " $0 -h display this help message"
225 echo " $0 -i <inv_file> specify an inventory file (default is inventory/single-localhost)"
226 echo " $0 -t do install, bring up cord-pod configuration, run E2E test"
Andy Baviercb024332016-04-29 15:52:26 -0400227 exit 0
228 ;;
Zack Williamsed9ced02016-05-24 06:37:04 -0700229 i ) INVENTORY=$OPTARG
Andy Baviercb024332016-04-29 15:52:26 -0400230 ;;
Zack Williamsed9ced02016-05-24 06:37:04 -0700231 t ) RUN_TEST=1
Andy Baviercb024332016-04-29 15:52:26 -0400232 ;;
Andy Bavier9927f962016-05-20 14:09:36 -0400233 \? ) echo "Invalid option: -$OPTARG"
Andy Bavier76349042016-05-04 16:10:29 -0700234 exit 1
235 ;;
236 esac
Andy Bavierea5b44c2016-04-08 16:12:30 -0400237done
238
Andy Bavier76349042016-05-04 16:10:29 -0700239# What to do
Andy Bavier0acc3642016-05-04 16:17:07 -0700240if [[ $RUN_TEST -eq 1 ]]
241then
242 cleanup_from_previous_test
243fi
244
Andy Bavierf0001732016-05-05 09:21:49 -0700245set -e
246
Andy Bavier76349042016-05-04 16:10:29 -0700247bootstrap
248setup_openstack
Andy Bavier76349042016-05-04 16:10:29 -0700249
250if [[ $RUN_TEST -eq 1 ]]
251then
Zack Williams80d4f222016-06-01 15:42:03 -0700252 build_xos_docker_images
Andy Bavier76349042016-05-04 16:10:29 -0700253 setup_xos
254 setup_test_client
255 run_e2e_test
Andy Bavier97faeec2016-05-10 13:23:04 -0400256 if [[ $EXAMPLESERVICE -eq 1 ]]
257 then
258 run_exampleservice_test
259 fi
Andy Bavier76349042016-05-04 16:10:29 -0700260fi
Andy Bavier97faeec2016-05-10 13:23:04 -0400261
262exit 0
Zack Williams961ffcd2016-05-20 07:03:35 -0700263