blob: 053e82efc58aeb0544754565da98cb019bfdbf74 [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
Zack Williams02f252b2016-06-13 12:24:26 -070040 git checkout $SETUP_BRANCH
Andy Bavierea5b44c2016-04-08 16:12:30 -040041
Zack Williams7e19a8a2016-05-24 06:42:47 -070042 sed -i "s/ubuntu/`whoami`/" $INVENTORY
Zack Williams65b72c82016-05-21 21:52:46 -070043 cp vars/example_keystone.yml vars/cord_keystone.yml
Andy Bavierea5b44c2016-04-08 16:12:30 -040044
Andy Bavier76349042016-05-04 16:10:29 -070045 # Log into the local node once to get host key
46 ssh -o StrictHostKeyChecking=no localhost "ls > /dev/null"
47}
48
49function setup_openstack() {
Zack Williamsf72e7b62016-06-02 09:57:23 -070050 # Run the playbook, but check to see if we're on cloudlab
51 if [[ -x /usr/testbed/bin/mkextrafs ]]
52 then
Zack Williams32d711d2016-06-02 10:53:30 -070053 ansible-playbook -i $INVENTORY cord-single-playbook.yml --extra-vars="on_cloudlab=True"
Zack Williamsf72e7b62016-06-02 09:57:23 -070054 else
55 ansible-playbook -i $INVENTORY cord-single-playbook.yml
56 fi
Andy Bavier76349042016-05-04 16:10:29 -070057}
58
Andy Bavier9927f962016-05-20 14:09:36 -040059function build_xos_docker_images() {
Andy Bavier97faeec2016-05-10 13:23:04 -040060 echo ""
Andy Bavier9927f962016-05-20 14:09:36 -040061 echo "Checking out XOS branch $BUILD_BRANCH"
Andy Bavier97faeec2016-05-10 13:23:04 -040062 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 -040063 ssh ubuntu@xos "cd xos; git checkout $BUILD_BRANCH"
Zack Williams97225f82016-05-24 08:23:37 -070064
Andy Bavier9927f962016-05-20 14:09:36 -040065 if [[ $EXAMPLESERVICE -eq 1 ]]
66 then
67 echo ""
68 echo "Adding exampleservice to XOS"
Andy Bavier676c6462016-06-06 14:31:20 -040069 ssh ubuntu@xos "cd xos; git cherry-pick cd6e972210f4134ffb2f7a36fb3c4baf33f02bef"
Andy Bavier9927f962016-05-20 14:09:36 -040070 fi
Zack Williams97225f82016-05-24 08:23:37 -070071
Andy Bavier97faeec2016-05-10 13:23:04 -040072 echo "Rebuilding XOS containers"
Zack Williams72a9ab42016-06-08 08:32:49 -070073 ssh ubuntu@xos "cd xos/containers/xos; make base"
Andy Bavier97faeec2016-05-10 13:23:04 -040074 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make local_containers"
Andy Bavier76349042016-05-04 16:10:29 -070075}
76
77function setup_xos() {
Zack Williamsd78bbb42016-05-23 08:53:20 -070078
Andy Bavier76349042016-05-04 16:10:29 -070079 echo "Setting up XOS, will take a few minutes"
Zack Williams3ecbfd02016-05-22 15:30:21 -070080 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make"
Andy Bavier76349042016-05-04 16:10:29 -070081 echo ""
82 echo "Pause 2 minutes"
83 sleep 120
84
Andy Bavierada2b3b2016-06-12 10:33:01 -040085 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make vtn; make fabric"
Andy Bavier76349042016-05-04 16:10:29 -070086 echo ""
87 echo "Pause 30 seconds"
88 sleep 30
89
Andy Bavier0d0d0f72016-06-12 13:47:12 -040090 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make cord"
Zack Williams455cec42016-05-25 16:07:36 -070091
92 if [[ $EXAMPLESERVICE -eq 1 ]]
93 then
94 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make exampleservice"
95 fi
Andy Bavier0d0d0f72016-06-12 13:47:12 -040096
97 echo ""
98 echo "(Temp workaround for bug in Synchronizer) Pause 60 seconds"
99 sleep 60
100 ssh ubuntu@xos "cd xos/xos/configurations/cord-pod; make vtn"
Andy Bavier76349042016-05-04 16:10:29 -0700101}
102
103function setup_test_client() {
Zack Williams3ecbfd02016-05-22 15:30:21 -0700104 ssh ubuntu@nova-compute "sudo apt-get -y install lxc"
Andy Bavier76349042016-05-04 16:10:29 -0700105
106 # Change default bridge
Zack Williams3ecbfd02016-05-22 15:30:21 -0700107 ssh ubuntu@nova-compute "sudo sed -i 's/lxcbr0/databr/' /etc/lxc/default.conf"
Andy Bavier76349042016-05-04 16:10:29 -0700108
109 # Create test client
Zack Williams3ecbfd02016-05-22 15:30:21 -0700110 ssh ubuntu@nova-compute "sudo lxc-create -t ubuntu -n testclient"
111 ssh ubuntu@nova-compute "sudo lxc-start -n testclient"
Andy Bavier76349042016-05-04 16:10:29 -0700112
113 # Configure network interface inside of test client with s-tag and c-tag
Zack Williams3ecbfd02016-05-22 15:30:21 -0700114 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ip link add link eth0 name eth0.222 type vlan id 222"
115 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ip link add link eth0.222 name eth0.222.111 type vlan id 111"
116 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ifconfig eth0.222 up"
117 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ifconfig eth0.222.111 up"
Andy Bavier76349042016-05-04 16:10:29 -0700118}
119
120function run_e2e_test() {
121 source ~/admin-openrc.sh
122
123 echo "*** Wait for vSG VM to come up"
124 i=0
Zack Williams961ffcd2016-05-20 07:03:35 -0700125
Andy Bavier97faeec2016-05-10 13:23:04 -0400126 until nova list --all-tenants|grep 'vsg.*ACTIVE' > /dev/null
Andy Bavier76349042016-05-04 16:10:29 -0700127 do
Andy Bavier97faeec2016-05-10 13:23:04 -0400128 sleep 60
129 (( i += 1 ))
130 echo "Waited $i minutes"
Andy Bavier76349042016-05-04 16:10:29 -0700131 done
132
133 # get mgmt IP address
134 ID=$( nova list --all-tenants|grep mysite_vsg|awk '{print $2}' )
135 MGMTIP=$( nova interface-list $ID|grep 172.27|awk '{print $8}' )
136
137 echo ""
138 echo "*** ssh into vsg VM, wait for Docker container to come up"
139 i=0
140 until ssh -o ProxyCommand="ssh -W %h:%p ubuntu@nova-compute" ubuntu@$MGMTIP "sudo docker ps|grep vcpe" > /dev/null
141 do
Andy Bavier97faeec2016-05-10 13:23:04 -0400142 sleep 60
143 (( i += 1 ))
144 echo "Waited $i minutes"
Andy Bavier76349042016-05-04 16:10:29 -0700145 done
146
147 echo ""
148 echo "*** Run dhclient in test client"
Zack Williams961ffcd2016-05-20 07:03:35 -0700149
Zack Williams3ecbfd02016-05-22 15:30:21 -0700150 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- dhclient eth0.222.111" > /dev/null
Andy Bavier76349042016-05-04 16:10:29 -0700151
152 echo ""
153 echo "*** Routes in test client"
Zack Williams3ecbfd02016-05-22 15:30:21 -0700154 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- route -n"
Andy Bavier76349042016-05-04 16:10:29 -0700155
Andy Bavier76349042016-05-04 16:10:29 -0700156 echo ""
157 echo "*** Test external connectivity in test client"
Zack Williams3ecbfd02016-05-22 15:30:21 -0700158 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- ping -c 3 8.8.8.8"
Andy Bavier76349042016-05-04 16:10:29 -0700159
160 echo ""
161 if [ $? -eq 0 ]
162 then
Andy Bavier97faeec2016-05-10 13:23:04 -0400163 echo "*** [PASSED] End-to-end connectivity test"
Andy Bavier76349042016-05-04 16:10:29 -0700164 else
Andy Bavier97faeec2016-05-10 13:23:04 -0400165 echo "*** [FAILED] End-to-end connectivity test"
166 exit 1
Andy Bavier76349042016-05-04 16:10:29 -0700167 fi
168}
169
Andy Bavier97faeec2016-05-10 13:23:04 -0400170function run_exampleservice_test () {
171 source ~/admin-openrc.sh
172
173 echo "*** Wait for exampleservice VM to come up."
Andy Bavier9927f962016-05-20 14:09:36 -0400174 echo "!!! NOTE that currently the VM will only be created after you login"
175 echo "!!! to XOS and manually create an ExampleService tenant."
Andy Bavier97faeec2016-05-10 13:23:04 -0400176 i=0
177 until nova list --all-tenants|grep exampleservice.*ACTIVE > /dev/null
178 do
179 sleep 60
180 (( i += 1 ))
181 echo "Waited $i minutes"
182 done
183
184 # get mgmt IP address
185 ID=$( nova list --all-tenants|grep mysite_exampleservice|awk '{print $2}' )
186 MGMTIP=$( nova interface-list $ID|grep 172.27|awk '{print $8}' )
187 PUBLICIP=$( nova interface-list $ID|grep 10.168|awk '{print $8}' )
188
189 echo ""
190 echo "*** ssh into exampleservice VM, wait for Apache come up"
191 i=0
192 until ssh -o ProxyCommand="ssh -W %h:%p ubuntu@nova-compute" ubuntu@$MGMTIP "ls /var/run/apache2/apache2.pid"
193 do
194 sleep 60
195 (( i += 1 ))
196 echo "Waited $i minutes"
197 done
198
199
200 echo ""
201 echo "*** Install curl in test client"
202 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- apt-get -y install curl"
203
204 echo ""
205 echo "*** Test connectivity to ExampleService from test client"
206 ssh ubuntu@nova-compute "sudo lxc-attach -n testclient -- curl -s http://$PUBLICIP"
207}
208
Andy Bavier76349042016-05-04 16:10:29 -0700209# Parse options
210RUN_TEST=0
Andy Bavier97faeec2016-05-10 13:23:04 -0400211EXAMPLESERVICE=0
Zack Williams80d4f222016-06-01 15:42:03 -0700212BUILD_BRANCH="master"
Zack Williams02f252b2016-06-13 12:24:26 -0700213SETUP_BRANCH="master"
Zack Williamsed9ced02016-05-24 06:37:04 -0700214INVENTORY="inventory/single-localhost"
215
Zack Williams02f252b2016-06-13 12:24:26 -0700216while getopts "b:ehi:ts:" opt; do
Andy Bavier76349042016-05-04 16:10:29 -0700217 case ${opt} in
Andy Bavier9927f962016-05-20 14:09:36 -0400218 b ) BUILD_BRANCH=$OPTARG
Andy Bavier76349042016-05-04 16:10:29 -0700219 ;;
Andy Bavier97faeec2016-05-10 13:23:04 -0400220 e ) EXAMPLESERVICE=1
221 ;;
Andy Bavier9927f962016-05-20 14:09:36 -0400222 h ) echo "Usage:"
Zack Williamsed9ced02016-05-24 06:37:04 -0700223 echo " $0 install OpenStack and prep XOS and ONOS VMs [default]"
Zack Williams02f252b2016-06-13 12:24:26 -0700224 echo " $0 -b <branch> build XOS containers using the <branch> branch of XOS git repo"
Zack Williamsed9ced02016-05-24 06:37:04 -0700225 echo " $0 -e add exampleservice to XOS"
226 echo " $0 -h display this help message"
227 echo " $0 -i <inv_file> specify an inventory file (default is inventory/single-localhost)"
228 echo " $0 -t do install, bring up cord-pod configuration, run E2E test"
Zack Williams02f252b2016-06-13 12:24:26 -0700229 echo " $0 -s <branch> use branch <branch> of the openstack-cluster-setup git repo"
Andy Baviercb024332016-04-29 15:52:26 -0400230 exit 0
231 ;;
Zack Williamsed9ced02016-05-24 06:37:04 -0700232 i ) INVENTORY=$OPTARG
Andy Baviercb024332016-04-29 15:52:26 -0400233 ;;
Zack Williamsed9ced02016-05-24 06:37:04 -0700234 t ) RUN_TEST=1
Andy Baviercb024332016-04-29 15:52:26 -0400235 ;;
Zack Williams02f252b2016-06-13 12:24:26 -0700236 s ) SETUP_BRANCH=$OPTARG
237 ;;
Andy Bavier9927f962016-05-20 14:09:36 -0400238 \? ) echo "Invalid option: -$OPTARG"
Andy Bavier76349042016-05-04 16:10:29 -0700239 exit 1
240 ;;
241 esac
Andy Bavierea5b44c2016-04-08 16:12:30 -0400242done
243
Andy Bavier76349042016-05-04 16:10:29 -0700244# What to do
Andy Bavier0acc3642016-05-04 16:17:07 -0700245if [[ $RUN_TEST -eq 1 ]]
246then
247 cleanup_from_previous_test
248fi
249
Andy Bavierf0001732016-05-05 09:21:49 -0700250set -e
251
Andy Bavier76349042016-05-04 16:10:29 -0700252bootstrap
253setup_openstack
Andy Bavier76349042016-05-04 16:10:29 -0700254
255if [[ $RUN_TEST -eq 1 ]]
256then
Zack Williams80d4f222016-06-01 15:42:03 -0700257 build_xos_docker_images
Andy Bavier76349042016-05-04 16:10:29 -0700258 setup_xos
259 setup_test_client
260 run_e2e_test
Andy Bavier97faeec2016-05-10 13:23:04 -0400261 if [[ $EXAMPLESERVICE -eq 1 ]]
262 then
263 run_exampleservice_test
264 fi
Andy Bavier76349042016-05-04 16:10:29 -0700265fi
Andy Bavier97faeec2016-05-10 13:23:04 -0400266
267exit 0
Zack Williams961ffcd2016-05-20 07:03:35 -0700268