From 47f454be5fe320b5e8fada1475c19870a4d76cca Mon Sep 17 00:00:00 2001 From: Bryan Sullivan Date: Tue, 6 Feb 2018 18:12:06 -0500 Subject: Remove scripts no longer maintained JIRA: MODELS-2 Change-Id: I1870fa48bafec54e1ae26183f7d4b4d55803f1b4 Signed-off-by: Bryan Sullivan --- tests/OpenWRT-clean.sh | 93 --------------- tests/OpenWRT.sh | 189 ----------------------------- tests/utils/ansible-setup.sh | 173 --------------------------- tests/utils/apex_wol_workaround.sh | 107 ----------------- tests/vLamp_Ansible.sh | 236 ------------------------------------- 5 files changed, 798 deletions(-) delete mode 100755 tests/OpenWRT-clean.sh delete mode 100755 tests/OpenWRT.sh delete mode 100644 tests/utils/ansible-setup.sh delete mode 100644 tests/utils/apex_wol_workaround.sh delete mode 100644 tests/vLamp_Ansible.sh diff --git a/tests/OpenWRT-clean.sh b/tests/OpenWRT-clean.sh deleted file mode 100755 index 957e5ac..0000000 --- a/tests/OpenWRT-clean.sh +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/bash -# Copyright 2015-2016 AT&T Intellectual Property, Inc -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# What this is: Cleanup script for a basic test to validate an OPNFV install. -# -# Status: this is a work in progress, under test. -# -# How to use: -# $ source ~/git/copper/tests/adhoc/OpenWRT-clean.sh [OpenWRT] -# OpenWRT: clean OpenWRT resources only (leave public and internal networks) - -wget https://git.opnfv.org/cgit/copper/plain/components/congress/install/bash/setenv.sh -O ~/setenv.sh -source ~/setenv.sh - -echo "$0: Delete OpenWRT instance" -instance=$(nova list | awk "/ OpenWRT / { print \$2 }") -if [ "$instance" != "" ]; then nova delete $instance; fi - -echo "$0: Wait for OpenWRT to terminate" -COUNTER=5 -RESULT="Wait!" -until [[ $COUNTER -eq 0 || $RESULT == "Go!" ]]; do - OpenWRT_id=$(openstack server list | awk "/ cirros1 / { print \$4 }") - if [[ -z "$OpenWRT_id" ]]; then RESULT="Go!"; fi - let COUNTER-=1 - sleep 5 -done - -echo "$0: Delete 'OpenWRT' security group" -sg=$(neutron security-group-list | awk "/ OpenWRT / { print \$2 }") -neutron security-group-delete $sg - -echo "$0: Delete floating ip" -# FLOATING_IP_ID was saved by OpenWRT.sh -source /tmp/OpenWRT_VARS.sh -rm /tmp/OpenWRT_VARS.sh -neutron floatingip-delete $FLOATING_IP_ID - -echo "$0: Delete OpenWRT key pair" -nova keypair-delete OpenWRT -rm /tmp/OpenWRT - -echo "$0: Delete neutron port with fixed_ip 192.168.1.1" -port=$(neutron port-list | awk "/192.168.1.1/ { print \$2 }") -if [ "$port" != "" ]; then neutron port-delete $port; fi - -echo "$0: Delete OpenWRT subnet" -neutron subnet-delete OpenWRT - -echo "$0: Delete OpenWRT network" -neutron net-delete OpenWRT - -if [[ "$1" == "OpenWRT" ]]; then exit 0; fi - -echo "$0: Get 'public_router' ID" -router=$(neutron router-list | awk "/ public_router / { print \$2 }") - -echo "$0: Get internal port ID with subnet 10.0.0.1 on 'public_router'" -internal_interface=$(neutron router-port-list $router | grep 10.0.0.1 | awk '{print $2}') - -echo "$0: If found, delete the port with subnet 10.0.0.1 on 'public_router'" -if [ "$internal_interface" != "" ]; then neutron router-interface-delete $router port=$internal_interface; fi - -echo "$0: Delete remaining neutron ports on subnet 10.0.0.0" -pid=($(neutron port-list | grep 10.0.0 | awk "/10.0.0/ { print \$2 }")); for id in ${pid[@]}; do neutron port-delete ${id}; done - -echo "$0: Clear the router gateway" -neutron router-gateway-clear public_router - -echo "$0: Delete the router" -neutron router-delete public_router - -echo "$0: Delete internal subnet" -neutron subnet-delete internal - -echo "$0: Delete internal network" -neutron net-delete internal - - - diff --git a/tests/OpenWRT.sh b/tests/OpenWRT.sh deleted file mode 100755 index 2857d77..0000000 --- a/tests/OpenWRT.sh +++ /dev/null @@ -1,189 +0,0 @@ -#!/bin/bash -# Copyright 2015-2016 AT&T Intellectual Property, Inc -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# What this is: A basic test to validate an OPNFV install. Creates an image, -# using the OpenWRT project and a private network over which OpenWRT will -# allocate addresses etc. -# -# Status: this is a work in progress, under test. Automated ping test to the -# internet and between VMs has not yet been implemented. -# -# Prequisites: -# python-openstackclient >=3.2.0 -# -# How to use: -# $ bash ~/git/copper/tests/adhoc/OpenWRT.sh -# After test, cleanup with -# $ bash ~/git/copper/tests/adhoc/OpenWRT-clean.sh - -trap 'fail' ERR - -pass() { - echo "$0: Hooray!" - set +x #echo off - exit 0 -} - -# Use this to trigger fail() at the right places -# if [ "$RESULT" == "Test Failed!" ]; then fail; fi -fail() { - echo "$0: Test Failed!" - set +x - exit 1 -} - -# Find external network if any, and details -function get_external_net () { - network_ids=($(neutron net-list|grep -v "+"|grep -v name|awk '{print $2}')) - for id in ${network_ids[@]}; do - [[ $(neutron net-show ${id}|grep 'router:external'|grep -i "true") != "" ]] && ext_net_id=${id} - done - if [[ $ext_net_id ]]; then - EXTERNAL_NETWORK_NAME=$(openstack network show $ext_net_id | awk "/ name / { print \$4 }") - EXTERNAL_SUBNET_ID=$(openstack network show $EXTERNAL_NETWORK_NAME | awk "/ subnets / { print \$4 }") - else - echo "$0: External network not found" - echo "$0: Create external network" - neutron net-create public --router:external - EXTERNAL_NETWORK_NAME="public" - echo "$0: Create external subnet" - neutron subnet-create public 192.168.10.0/24 --name public --enable_dhcp=False --allocation_pool start=192.168.10.6,end=192.168.10.49 --gateway 192.168.10.1 - EXTERNAL_SUBNET_ID=$(openstack subnet show public | awk "/ id / { print \$4 }") - fi -} - -wget https://git.opnfv.org/cgit/copper/plain/components/congress/install/bash/setenv.sh -O ~/setenv.sh -source ~/setenv.sh - -echo "$0: create OpenWRT image" -image=$(openstack image list | awk "/ OpenWRT / { print \$2 }") -if [ -z $image ]; then glance --os-image-api-version 1 image-create --name OpenWRT --disk-format qcow2 --location http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img --container-format bare -fi - -get_external_net - -echo "$0: Create floating IP for external subnet" -FLOATING_IP_ID=$(neutron floatingip-create $EXTERNAL_NETWORK_NAME | awk "/ id / { print \$4 }") -FLOATING_IP=$(neutron floatingip-show $FLOATING_IP_ID | awk "/ floating_ip_address / { print \$4 }" | cut -d - -f 1) -# Save ID to pass to cleanup script -echo "FLOATING_IP_ID=$FLOATING_IP_ID" >/tmp/OpenWRT_VARS.sh - -INTERNAL_NET_ID=$(neutron net-list | awk "/ internal / { print \$2 }") -if [[ -z $INTERNAL_NET_ID ]]; then - echo "$0: Create internal network" - neutron net-create internal - - echo "$0: Create internal subnet" - neutron subnet-create internal 10.0.0.0/24 --name internal --gateway 10.0.0.1 --enable-dhcp --allocation-pool start=10.0.0.2,end=10.0.0.254 --dns-nameserver 8.8.8.8 -fi - -if [[ -z $(neutron router-list | awk "/ public_router / { print \$2 }") ]]; then - echo "$0: Create public_router" - neutron router-create public_router - - echo "$0: Create public_router gateway" - neutron router-gateway-set public_router $EXTERNAL_NETWORK_NAME - - echo "$0: Add router interface for internal network" - neutron router-interface-add public_router subnet=internal -fi - -echo "$0: Create OpenWRT network" -neutron net-create OpenWRT -wrt_net_id=$(neutron net-list | awk "/ OpenWRT / { print \$2 }") - -echo "$0: Create OpenWRT subnet" -neutron subnet-create OpenWRT 192.168.1.0/24 --disable-dhcp --name OpenWRT --gateway 192.168.1.1 - -echo "$0: Create OpenWRT security group" -neutron security-group-create OpenWRT - -echo "$0: Add rules to OpenWRT security group" -neutron security-group-rule-create --direction ingress --protocol=TCP --remote-ip-prefix 0.0.0.0/0 --port-range-min=22 --port-range-max=22 OpenWRT -neutron security-group-rule-create --direction ingress --protocol=TCP --remote-ip-prefix 0.0.0.0/0 --port-range-min=80 --port-range-max=80 OpenWRT -neutron security-group-rule-create --direction ingress --protocol=ICMP --remote-ip-prefix 0.0.0.0/0 OpenWRT -neutron security-group-rule-create --direction egress --protocol=TCP --remote-ip-prefix 0.0.0.0/0 --port-range-min=22 --port-range-max=22 OpenWRT -neutron security-group-rule-create --direction egress --protocol=ICMP --remote-ip-prefix 0.0.0.0/0 OpenWRT - -echo "$0: Create Nova key pair" -ssh-keygen -f "$HOME/.ssh/known_hosts" -R 192.168.1.1 -nova keypair-add OpenWRT > /tmp/OpenWRT -chmod 600 /tmp/OpenWRT - -echo "$0: Create OpenWRT port for LAN" -LAN_PORT_ID=$(neutron port-create OpenWRT --fixed-ip ip_address=192.168.1.1 | awk "/ id / { print \$4 }") - -echo "$0: Create OpenWRT port for WAN" -WAN_PORT_ID=$(neutron port-create internal | awk "/ id / { print \$4 }") -# The following does not work with a single-NIC compute node -# EXT_PORT_ID=$(neutron port-create $EXTERNAL_NETWORK_NAME | awk "/ id / { print \$4 }") - -echo "$0: Boot OpenWRT with internal net port" -openstack server create --flavor m1.tiny --image OpenWRT --nic port-id=$WAN_PORT_ID --security-group OpenWRT --security-group default --key-name OpenWRT OpenWRT - -echo "$0: Add OpenWRT security group (should have been done thru the server create command but...)" -openstack server add security group OpenWRT OpenWRT - -# failed with: either net-id or port-id should be specified but not both -# openstack server create --flavor m1.tiny --image OpenWRT --nic net-id=$wrt_net_id,v4-fixed-ip=192.168.1.1 --nic net-id=$INTERNAL_NET_ID --security-group OpenWRT --key-name OpenWRT OpenWRT -# openstack server create --flavor m1.tiny --image OpenWRT --nic v4-fixed-ip=192.168.1.1 --nic net-id=$INTERNAL_NET_ID --security-group OpenWRT --key-name OpenWRT OpenWRT - -echo "$0: Wait for OpenWRT to go ACTIVE" -COUNTER=12 -RESULT="Test Failed!" -until [[ $COUNTER -eq 0 || $RESULT == "Test Success!" ]]; do - status=$(openstack server show OpenWRT | awk "/ status / { print \$4 }") - if [[ "$status" == "ACTIVE" ]]; then RESULT="Test Success!"; fi - let COUNTER-=1 - sleep 5 -done -if [ "$RESULT" == "Test Failed!" ]; then fail; fi - -echo "$0: Associate floating IP to OpenWRT external port" -neutron floatingip-associate $FLOATING_IP_ID $WAN_PORT_ID - -echo "$0: Attach eth1 to OpenWRT internal port" -nova interface-attach --port-id $LAN_PORT_ID OpenWRT - -echo "$0: Boot cirros1 with internal net port" -openstack server create --flavor m1.tiny --image cirros-0.3.3-x86_64 --nic net-id=$INTERNAL_NET_ID --security-group OpenWRT --security-group default --key-name OpenWRT cirros1 - -echo "$0: Wait for cirros1 to go ACTIVE" -COUNTER=12 -RESULT="Test Failed!" -until [[ $COUNTER -eq 0 || $RESULT == "Test Success!" ]]; do - status=$(openstack server show cirros1 | awk "/ status / { print \$4 }") - if [[ "$status" == "ACTIVE" ]]; then RESULT="Test Success!"; fi - let COUNTER-=1 - sleep 5 -done -if [ "$RESULT" == "Test Failed!" ]; then fail; fi - -echo "$0: Create floating IP for external subnet" -FLOATING_IP_ID=$(neutron floatingip-create $EXTERNAL_NETWORK_NAME | awk "/ id / { print \$4 }") -FLOATING_IP=$(neutron floatingip-show $FLOATING_IP_ID | awk "/ floating_ip_address / { print \$4 }" | cut -d - -f 1) - -echo "$0: Associate floating IP to cirros1 internal port" -nova floating-ip-associate cirros1 $FLOATING_IP - -echo "$0: Create cirros1 port for OpenWRT net" -INT_PORT_ID=$(neutron port-create OpenWRT --fixed-ip ip_address=192.168.1.2 | awk "/ id / { print \$4 }") - -echo "$0: Attach eth1 to cirros1 internal port" -nova interface-attach --port-id $INT_PORT_ID cirros1 - - - -pass diff --git a/tests/utils/ansible-setup.sh b/tests/utils/ansible-setup.sh deleted file mode 100644 index 67e4d59..0000000 --- a/tests/utils/ansible-setup.sh +++ /dev/null @@ -1,173 +0,0 @@ -#!/bin/bash -# Copyright 2016 AT&T Intellectual Property, Inc -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# What this is: Setup script for Ansible in an Unbuntu Xenial docker container. -# -# Status: this is a work in progress, under test. -# -# How to use: -# $ bash ansible-setup.sh [init|setup|clean] -# init: Initialize docker container -# setup: Setup of Ansible in the docker container -# clean: Clean - -pass() { - echo "$0: Hooray!" - set +x #echo off - exit 0 -} - -fail() { - echo "$0: Failed!" - set +x - exit 1 -} - -function setenv () { -if [ "$dist" == "Ubuntu" ]; then - echo "$0: Ubuntu-based install" - echo "$0: Create the environment file" - KEYSTONE_HOST=$(juju status --format=short | awk "/keystone\/0/ { print \$3 }") - cat </tmp/ansible/admin-openrc.sh -export CONGRESS_HOST=$(juju status --format=short | awk "/openstack-dashboard/ { print \$3 }") -export HORIZON_HOST=$(juju status --format=short | awk "/openstack-dashboard/ { print \$3 }") -export KEYSTONE_HOST=$KEYSTONE_HOST -export CEILOMETER_HOST=$(juju status --format=short | awk "/ceilometer\/0/ { print \$3 }") -export CINDER_HOST=$(juju status --format=short | awk "/cinder\/0/ { print \$3 }") -export GLANCE_HOST=$(juju status --format=short | awk "/glance\/0/ { print \$3 }") -export NEUTRON_HOST=$(juju status --format=short | awk "/neutron-api\/0/ { print \$3 }") -export NOVA_HOST=$(juju status --format=short | awk "/nova-cloud-controller\/0/ { print \$3 }") -export OS_USERNAME=admin -export OS_PASSWORD=openstack -export OS_TENANT_NAME=admin -export OS_AUTH_URL=http://$KEYSTONE_HOST:5000/v2.0 -export OS_REGION_NAME=RegionOne -EOF -else - # Centos - echo "$0: Centos-based install" - echo "$0: Setup undercloud environment so we can get overcloud Controller server address" - source ~/stackrc - echo "$0: Get address of Controller node" - export CONTROLLER_HOST1=$(openstack server list | awk "/overcloud-controller-0/ { print \$8 }" | sed 's/ctlplane=//g') - echo "$0: Create the environment file" - cat </tmp/ansible/admin-openrc.sh -export HORIZON_HOST=$CONTROLLER_HOST1 -export CONGRESS_HOST=$CONTROLLER_HOST1 -export KEYSTONE_HOST=$CONTROLLER_HOST1 -export CEILOMETER_HOST=$CONTROLLER_HOST1 -export CINDER_HOST=$CONTROLLER_HOST1 -export GLANCE_HOST=$CONTROLLER_HOST1 -export NEUTRON_HOST=$CONTROLLER_HOST1 -export NOVA_HOST=$CONTROLLER_HOST1 -EOF - cat ~/overcloudrc >>/tmp/ansible/admin-openrc.sh - source ~/overcloudrc - export OS_REGION_NAME=$(openstack endpoint list | awk "/ nova / { print \$4 }") - # sed command below is a workaound for a bug - region shows up twice for some reason - cat <>/tmp/ansible/admin-openrc.sh -export OS_REGION_NAME=$OS_REGION_NAME -EOF -fi -source /tmp/ansible/admin-openrc.sh -} - -function create_container () { - echo "$0: Creating docker container for Ansible installation" - # STEP 1: Create the Ansible container and launch it - echo "$0: Copy this script to /tmp/ansible" - mkdir /tmp/ansible - cp $0 /tmp/ansible/. - chmod 755 /tmp/ansible/*.sh - - echo "$0: Setup admin-openrc.sh" - setenv - - echo "$0: Setup container" - if [ "$dist" == "Ubuntu" ]; then - # xenial is needed for python 3.5 - sudo docker pull ubuntu:xenial - sudo service docker start - sudo docker run -it -d -v /tmp/ansible/:/tmp/ansible --name ansible ubuntu:xenial /bin/bash - else - # Centos - echo "Centos-based install" - sudo tee /etc/yum.repos.d/docker.repo <<-'EOF' -[dockerrepo] -name=Docker Repository--parents -baseurl=https://yum.dockerproject.org/repo/main/centos/7/ -enabled=1 -gpgcheck=1 -gpgkey=https://yum.dockerproject.org/gpg -EOF - sudo yum install -y docker-engine - # xenial is needed for python 3.5 - sudo service docker start - sudo docker pull ubuntu:xenial - sudo docker run -i -t -d -v /tmp/ansible/:/tmp/ansible --name ansible ubuntu:xenial /bin/bash - fi -} - -function setup () { - echo "$0: Installing Ansible" - # STEP 2: Install Ansible in the container - # Per http://docs.ansible.com/ansible/intro_installation.html - echo "$0: Install dependencies - OS specific" - apt-get update - apt-get install -y python - apt-get install -y python-dev - apt-get install -y python-pip - apt-get install -y wget - apt-get install -y openssh-server - apt-get install -y git - apt-get install -y apg - apt-get install -y libffi-dev - apt-get install -y libssl-dev - - echo "$0: Install Ansible and Shade" - pip install --upgrade ansible - pip install --upgrade shade - - echo "$0: Create key pair for interacting with servers via Ansible" - ssh-keygen -t rsa -N "" -f /tmp/ansible/ansible -C ubuntu@ansible - chmod 600 /tmp/ansible/ansible -} - -function clean () { - sudo docker stop $(sudo docker ps -a | awk "/ansible/ { print \$1 }") - sudo docker rm -v $(sudo docker ps -a | awk "/ansible/ { print \$1 }") -} - -dist=`grep DISTRIB_ID /etc/*-release | awk -F '=' '{print $2}'` -case "$1" in - "init") - create_container - pass - ;; - "setup") - setup - pass - ;; - "clean") - clean - pass - ;; - *) - echo "usage: bash Ansible-setup.sh [init|setup|clean]" - echo "init: Initialize docker container" - echo "setup: Setup of Ansible in the docker container" - echo "clean: remove Ansible" - fail -esac diff --git a/tests/utils/apex_wol_workaround.sh b/tests/utils/apex_wol_workaround.sh deleted file mode 100644 index 0be3fa2..0000000 --- a/tests/utils/apex_wol_workaround.sh +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/bash -# Copyright 2016 AT&T Intellectual Property, Inc -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# What this is: Workaround for issues with the undercloud suppor for -# PXE booting WOL devices. The TFTP RRQ "undionly.kpxe" events (through -# which the booted host requests the PXE boot image) are not making it -# to the undercloud. So two workarounds are implemented: a tftp server -# for undionly.kpxe is installed on the jumphost, and manual invocation -# of the WOL is invoked (as the undercloud was never issuing the WOL -# packets). -# -# Status: this is a work in progress, under test. -# -# How to use: -# As root on the jumphost, start this script as soon as deploy is started. -# It will wait for the Ironic log to get created, then watch for the following -# key log entries and take action on them directly or through notifying the user -# to take action as needed (e.g. power-off the node). -# 2016-10-07 23:26:10.597 17686 INFO ironic.drivers.modules.wol [req-ec2f0a60-5f90-4706-a2b3-b7217193166d - - - - -] Reboot called for node 2baf581d-aa47-481e-a28e-304e0959b871. Wake-On-Lan does not fully support this operation. Trying to power on the node. -# 2016-10-07 23:56:29.876 17686 INFO ironic.drivers.modules.wol [req-92128326-889c-47a8-94ee-2fec77c2de44 - - - - -] Power off called for node 579967bd-1e4d-4212-bf9b-1716a1cd4cfa. Wake-On-Lan does not support this operation. Manual intervention required to perform this action. -# 2016-10-08 23:57:17.008 17691 WARNING ironic.drivers.modules.agent_base_vendor [req-44232e37-c38a-4099-8d81-871700e4dc2a - - - - -] Failed to soft power off node 165841ec-e8d2-4592-8f15-55742899fff5 in at least 30 seconds. Error: RetryError[Attempts: 7, Value: power on] -# -# $ bash apex_wol_workaround.sh - -echo "$0: Install tftp server" -yum install tftp tftp-server xinetd -cat >/etc/xinetd.d/tftp < /var/lib/tftpboot/undionly.kpxe - -UNDERCLOUD_MAC=$(virsh domiflist undercloud | grep default | grep -Eo "[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+") -while [[ -z $UNDERCLOUD_MAC ]]; do - echo "$0: Waiting 10 seconds for undercloud to be created" - sleep 10 - UNDERCLOUD_MAC=$(virsh domiflist undercloud | grep default | grep -Eo "[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+:[0-9a-f\]+") -done - -UNDERCLOUD_IP=$(/usr/sbin/arp -e | grep ${UNDERCLOUD_MAC} | awk {'print $1'}) -while [[ -z $UNDERCLOUD_IP ]]; do - echo "$0: Waiting 10 seconds for undercloud IP to be assigned" - sleep 10 - UNDERCLOUD_IP=$(/usr/sbin/arp -e | grep ${UNDERCLOUD_MAC} | awk {'print $1'}) -done - -ssh -x -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no stack@$UNDERCLOUD_IP < /tmp/myfifo & -while read line -do - if [[ $(echo "$line" | grep "Reboot called for node") ]]; then - IRONIC_NODE_ID=$(echo "$line" | sed -e 's/^.*node //' | awk '{print $1}' | sed -e 's/.$//g') - SERVER_ID=$(ironic node-show $IRONIC_NODE_ID | awk "/ instance_uuid / { print \$4 }") - SERVER_NAME=$(openstack server show $SERVER_ID | awk "/ name / { print \$4 }") - echo "$0: Waking $SERVER_NAME" - if [[ $SERVER_NAME == "overcloud-controller-0" ]]; then sudo ether-wake B8:AE:ED:76:FB:C4 - else sudo ether-wake B8:AE:ED:76:F9:FF - fi - fi - - if [[ $(echo "$line" | grep "Failed to soft power off node") ]]; then - IRONIC_NODE_ID=$(echo "$line" | sed -e 's/^.*node //' | awk '{print $1}' | sed -e 's/.$//g') - SERVER_ID=$(ironic node-show $IRONIC_NODE_ID | awk "/ instance_uuid / { print \$4 }") - SERVER_NAME=$(openstack server show $SERVER_ID | awk "/ name / { print \$4 }") - echo "$0: *** POWER OFF $SERVER_NAME NOW! ***" - fi -done /tmp/ansible/blueprints/lampstack/vars/opnfv.yml <>/tmp/ansible/blueprints/lampstack/ansible.cfg - - echo "$0: Setup trusty-server glance image if needed" - if [[ -z $(openstack image list | awk "/ trusty-server / { print \$2 }") ]]; then glance --os-image-api-version 1 image-create --name trusty-server --disk-format qcow2 --location https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img --container-format bare; fi - - if [[ -z $(neutron net-list | awk "/ internal / { print \$2 }") ]]; then - echo "$0: Create internal network" - neutron net-create internal - - echo "$0: Create internal subnet" - neutron subnet-create internal 10.0.0.0/24 --name internal --gateway 10.0.0.1 --enable-dhcp --allocation-pool start=10.0.0.2,end=10.0.0.254 --dns-nameserver 8.8.8.8 - fi - - if [[ -z $(neutron router-list | awk "/ public_router / { print \$2 }") ]]; then - echo "$0: Create router" - neutron router-create public_router - - echo "$0: Create router gateway" - neutron router-gateway-set public_router $FLOATING_NETWORK_NAME - - echo "$0: Add router interface for internal network" - neutron router-interface-add public_router subnet=internal - fi -} - -start() { - echo "$0: Add ssh key" - chown root /tmp/ansible/ansible - eval $(ssh-agent -s) - ssh-add /tmp/ansible/ansible - - echo "$0: setup OpenStack environment" - source /tmp/ansible/admin-openrc.sh - - echo "$0: Clear known hosts (workaround for ssh connection issues)" - rm ~/.ssh/known_hosts - - echo "$0: invoke blueprint install via Ansible" - cd /tmp/ansible/blueprints/lampstack - ansible-playbook -vvv -e "action=apply env=opnfv password=$OS_PASSWORD" site.yml - - pass -} - -stop() { - echo "$0: Add ssh key" - eval $(ssh-agent -s) - ssh-add /tmp/ansible/ansible - - echo "$0: setup OpenStack environment" - source /tmp/ansible/admin-openrc.sh - - echo "$0: invoke blueprint destroy via Ansible" - cd /tmp/ansible/blueprints/lampstack - ansible-playbook -vvv -e "action=destroy env=opnfv password=$OS_PASSWORD" site.yml - - pass -} - -forward_to_container () { - echo "$0: pass $1 command to vLamp_Ansible.sh in tacker container" - CONTAINER=$(sudo docker ps -a | awk "/ansible/ { print \$1 }") - sudo docker exec $CONTAINER /bin/bash /tmp/ansible/vLamp_Ansible.sh $1 $1 - if [ $? -eq 1 ]; then fail; fi -} - -dist=`grep DISTRIB_ID /etc/*-release | awk -F '=' '{print $2}'` -case "$1" in - setup) - setup - pass - ;; - run) - setup - forward_to_container start - pass - ;; - start|stop) - if [[ $# -eq 1 ]]; then forward_to_container $1 - else - # running inside the tacker container, ready to go - $1 - fi - pass - ;; - clean) - echo "$0: Uninstall Ansible and test environment" - bash utils/ansible-setup.sh clean - pass - ;; - *) - echo "usage: bash vLamp_Ansible.sh [setup|start|run|clean]" - echo "setup: setup test environment" - echo "start: install blueprint and run test" - echo "run: setup test environment and run test" - echo "stop: stop test and uninstall blueprint" - echo "clean: cleanup after test" - fail -esac -- cgit 1.2.3-korg