From eb637946cfb232a246ba64b6c10a30c58c361527 Mon Sep 17 00:00:00 2001 From: Narinder Gupta Date: Sun, 24 Jul 2016 22:48:21 -0500 Subject: added the smoketest script. Change-Id: I6e52074d13966e6e38b46ec4aeb6d3180eb69cd4 Signed-off-by: Narinder Gupta --- ci/openstack.sh | 39 --------------------------------------- ci/smoketest.sh | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 39 deletions(-) create mode 100755 ci/smoketest.sh (limited to 'ci') diff --git a/ci/openstack.sh b/ci/openstack.sh index d436140d..a01359c4 100755 --- a/ci/openstack.sh +++ b/ci/openstack.sh @@ -195,42 +195,3 @@ openstack congress datasource create keystone "keystone" \ --config password=$OS_PASSWORD \ --config auth_url=http://$keystoneIp:5000/v2.0 - -##enable extra stuff only if testing manually - -#neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default -#neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default - -#wget -P /tmp/images http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img -#openstack image create --file /tmp/images/cirros-0.3.3-x86_64-disk.img --disk-format qcow2 --container-format bare "cirros-0.3.3-x86_64" -#wget -P /tmp/images http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img -#openstack image create --file /tmp/images/trusty-server-cloudimg-amd64-disk1.img --disk-format qcow2 --container-format bare "ubuntu-trusty-daily" -#wget -P /tmp/images http://cloud-images.ubuntu.com/trusty/current/xenial-server-cloudimg-amd64.tar.gz -#openstack image create --file /tmp/images/xenial-server-cloudimg-amd64.tar.gz --container-format bare --disk-format raw "xenial-server-cloudimg-amd64" - -#rm -rf /tmp/images - -## import key pair -#openstack project create --description "Demo Tenant" demo -#openstack user create --project demo --password demo --email demo@demo.demo demo - -#openstack keypair create --public-key ~/.ssh/id_rsa.pub ubuntu-keypair - -## create vm network -#neutron net-create demo-net -#neutron subnet-create --name demo-subnet --gateway 10.20.5.1 demo-net 10.20.5.0/24 -#neutron router-create demo-router -#neutron router-interface-add demo-router demo-subnet -#neutron router-gateway-set demo-router ext-net - -## create pool of floating ips -#i=0 -#while [ $i -ne 3 ]; do -# neutron floatingip-create ext-net -# i=$((i + 1)) -#done - -##http://docs.openstack.org/juno/install-guide/install/apt/content/launch-instance-neutron.html -# netid=`neutron net-show demo-net -c id -f value` -# nova boot --flavor m1.small --image cirros-0.3.3-x86_64 --nic net-id=$netid --security-group default --key-name ubuntu-keypair demo-instance1 -# nova floating-ip-associate demo-instance1 10.5.15.8 diff --git a/ci/smoketest.sh b/ci/smoketest.sh new file mode 100755 index 00000000..a7ba7e68 --- /dev/null +++ b/ci/smoketest.sh @@ -0,0 +1,45 @@ +#!/bin/bash -ex + +. ./cloud/admin-openrc + +##enable extra stuff only if testing manually + +neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default +neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default + +wget -P /tmp/images http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img +openstack image create --file /tmp/images/cirros-0.3.4-x86_64-disk.img --disk-format qcow2 --container-format bare "cirros-0.3.4-x86_64" +wget -P /tmp/images http://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img +openstack image create --file /tmp/images/trusty-server-cloudimg-amd64-disk1.img --disk-format qcow2 --container-format bare "ubuntu-trusty-daily" +#wget -P /tmp/images http://cloud-images.ubuntu.com/trusty/current/xenial-server-cloudimg-amd64.tar.gz +#openstack image create --file /tmp/images/xenial-server-cloudimg-amd64.tar.gz --container-format bare --disk-format raw "xenial-server-cloudimg-amd64" + +rm -rf /tmp/images + +## import key pair +openstack project create --description "Demo Tenant" demo +openstack user create --project demo --password demo --email demo@demo.demo demo + +openstack keypair create --public-key ~/.ssh/id_rsa.pub ubuntu-keypair + +## create vm network +neutron net-create demo-net +neutron subnet-create demo-net 10.20.5.0/24 --name demo-subnet --gateway 10.20.5.1 --enable-dhcp --allocation-pool start=10.0.0.5,end=10.0.0.254 --dns-nameserver 8.8.8.8 +neutron router-create demo-router +neutron router-gateway-set demo-router ext-net +neutron router-interface-add demo-router subnet=demo-subnet + +# add a delay since the previous command takes the neutron-api offline for a while (?) +sleep 30 + +## create pool of floating ips +i=0 +while [ $i -ne 3 ]; do + flip=`neutron floatingip-create ext-net` + i=$((i + 1)) +done + +##http://docs.openstack.org/juno/install-guide/install/apt/content/launch-instance-neutron.html + netid=`neutron net-show demo-net -c id -f value` + nova boot --flavor m1.small --image cirros-0.3.4-x86_64 --nic net-id=$netid --security-group default --key-name ubuntu-keypair demo-instance1 + nova floating-ip-associate demo-instance1 $flip -- cgit 1.2.3-korg