diff options
author | 2016-08-08 06:05:18 -0700 | |
---|---|---|
committer | 2016-08-08 06:05:18 -0700 | |
commit | 854493b6bd66ed36a472652889bbfbbd50ade009 (patch) | |
tree | e4ab34b412ce6905e46a35eebe7475df93b59614 /tests/utils | |
parent | c62cb17acd55b006bb5f8ab73787d08453856ee2 (diff) |
Further updates in testing. Addressing further tweaks to blueprint.
JIRA: MODELS-23
Change-Id: Ia2e2a141a6a7ef7270529ed63892fa624be04ff0
Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'tests/utils')
-rw-r--r-- | tests/utils/cloudify-clean.sh | 12 | ||||
-rw-r--r-- | tests/utils/cloudify-setup.sh | 94 |
2 files changed, 59 insertions, 47 deletions
diff --git a/tests/utils/cloudify-clean.sh b/tests/utils/cloudify-clean.sh index 594afec..f5bd487 100644 --- a/tests/utils/cloudify-clean.sh +++ b/tests/utils/cloudify-clean.sh @@ -23,6 +23,12 @@ # # How to use: # $ bash cloudify-clean.sh +# +# Extra commands useful in debugging: +# Delete all security groups created by Cloudify +# sg=($(openstack security group list|awk "/ security_group_local_security_group_/ { print \$2 }")); for id in ${sg[@]}; do openstack security group delete ${id}; done +# Delete all floating IPs +# flip=($(neutron floatingip-list|grep -v "+"|grep -v id|awk '{print $2}')); for id in ${flip[@]}; do neutron floatingip-delete ${id}; done function setenv () { mkdir /tmp/cloudify @@ -91,7 +97,7 @@ neutron port-delete cloudify-manager-port echo "cloudify-clean.sh: delete other ports" port=($(neutron port-list|grep -v "+"|grep -v name|awk '{print $2}')); for id in ${port[@]}; do neutron port-delete ${id}; done -echo "cloudify-clean.sh: delete cloudify securituy groups" +echo "cloudify-clean.sh: delete cloudify security groups" openstack security group delete cloudify-sg-manager openstack security group delete cloudify-sg-agents @@ -113,3 +119,7 @@ openstack keypair delete cloudify-manager echo "cloudify-clean.sh: delete cloudify-agent keypair" openstack keypair delete cloudify-agent +echo "cloudify-clean.sh: delete cloudify container" +CONTAINER=$(sudo docker ps -l | awk "/ ubuntu:xenial / { print \$1 }") +sudo docker stop $CONTAINER +sudo docker rm -v $CONTAINER diff --git a/tests/utils/cloudify-setup.sh b/tests/utils/cloudify-setup.sh index 98945f0..45cea3b 100644 --- a/tests/utils/cloudify-setup.sh +++ b/tests/utils/cloudify-setup.sh @@ -88,7 +88,7 @@ function get_external_net () { } dist=`grep DISTRIB_ID /etc/*-release | awk -F '=' '{print $2}'` -if [ "$1" == "1" ]; then +if [ "$2" == "1" ]; then echo "cloudify-setup.sh: Copy this script to /tmp/cloudify" cp $0 /tmp/cloudify/. chmod 755 /tmp/cloudify/*.sh @@ -105,7 +105,7 @@ if [ "$1" == "1" ]; then exit 0 fi else - if [ "$1" == "2" ]; then + if [ "$2" == "2" ]; then echo "cloudify-setup.sh: Install dependencies - OS specific" if [ "$dist" == "Ubuntu" ]; then apt-get update @@ -153,64 +153,66 @@ python get-cloudify.py --upgrade echo "cloudify-setup.sh: Initialize Cloudify" cfy init -echo "cloudify-setup.sh: Prepare the Cloudify Manager data" -mkdir -p ~/cloudify-manager -cd ~/cloudify-manager -wget https://github.com/cloudify-cosmo/cloudify-manager-blueprints/archive/3.4.tar.gz -mv 3.4.tar.gz cloudify-manager-blueprints.tar.gz -tar -xzvf cloudify-manager-blueprints.tar.gz -cd cloudify-manager-blueprints-3.4 - echo "cloudify-setup.sh: Setup admin-openrc.sh" source /tmp/cloudify/admin-openrc.sh -echo "cloudify-setup.sh: Setup keystone_username" -sed -i -- "s/keystone_username: ''/keystone_username: '$OS_USERNAME'/g" openstack-manager-blueprint-inputs.yaml +if [ "$1" == "cloudify-manager" ]; then + echo "cloudify-setup.sh: Prepare the Cloudify Manager data" + mkdir -p ~/cloudify-manager + cd ~/cloudify-manager + wget https://github.com/cloudify-cosmo/cloudify-manager-blueprints/archive/3.4.tar.gz + mv 3.4.tar.gz cloudify-manager-blueprints.tar.gz + tar -xzvf cloudify-manager-blueprints.tar.gz + cd cloudify-manager-blueprints-3.4 -echo "cloudify-setup.sh: Setup keystone_password" -sed -i -- "s/keystone_password: ''/keystone_password: '$OS_PASSWORD'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup keystone_username" + sed -i -- "s/keystone_username: ''/keystone_username: '$OS_USERNAME'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup keystone_tenant_name" -sed -i -- "s/keystone_tenant_name: ''/keystone_tenant_name: '$OS_TENANT_NAME'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup keystone_password" + sed -i -- "s/keystone_password: ''/keystone_password: '$OS_PASSWORD'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup keystone_url" -# Use ~ instead of / as regex delimeter, since this variable contains slashes -sed -i -- "s~keystone_url: ''~keystone_url: '$OS_AUTH_URL'~g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup keystone_tenant_name" + sed -i -- "s/keystone_tenant_name: ''/keystone_tenant_name: '$OS_TENANT_NAME'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup region" -sed -i -- "s/region: ''/region: '$OS_REGION_NAME'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup keystone_url" + # Use ~ instead of / as regex delimeter, since this variable contains slashes + sed -i -- "s~keystone_url: ''~keystone_url: '$OS_AUTH_URL'~g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup manager_public_key_name" -sed -i -- "s/#manager_public_key_name: ''/manager_public_key_name: 'cloudify-manager'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup region" + sed -i -- "s/region: ''/region: '$OS_REGION_NAME'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup agent_public_key_name" -sed -i -- "s/#agent_public_key_name: ''/agent_public_key_name: 'cloudify-agent'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup manager_public_key_name" + sed -i -- "s/#manager_public_key_name: ''/manager_public_key_name: 'cloudify-manager'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup image_id" -# CentOS-7-x86_64-GenericCloud.qcow2 failed to be routable (?), so changed to 1607 version -image=$(openstack image list | awk "/ CentOS-7-x86_64-GenericCloud-1607 / { print \$2 }") -if [ -z $image ]; then glance --os-image-api-version 1 image-create --name CentOS-7-x86_64-GenericCloud-1607 --disk-format qcow2 --location http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qcow2-1607 --container-format bare -fi -image=$(openstack image list | awk "/ CentOS-7-x86_64-GenericCloud-1607 / { print \$2 }") -sed -i -- "s/image_id: ''/image_id: '$image'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup agent_public_key_name" + sed -i -- "s/#agent_public_key_name: ''/agent_public_key_name: 'cloudify-agent'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup flavor_id" -flavor=$(nova flavor-show m1.large | awk "/ id / { print \$4 }") -sed -i -- "s/flavor_id: ''/flavor_id: '$flavor'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup image_id" + # CentOS-7-x86_64-GenericCloud.qcow2 failed to be routable (?), so changed to 1607 version + image=$(openstack image list | awk "/ CentOS-7-x86_64-GenericCloud-1607 / { print \$2 }") + if [ -z $image ]; then + glance --os-image-api-version 1 image-create --name CentOS-7-x86_64-GenericCloud-1607 --disk-format qcow2 --location http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qcow2-1607 --container-format bare + fi + image=$(openstack image list | awk "/ CentOS-7-x86_64-GenericCloud-1607 / { print \$2 }") + sed -i -- "s/image_id: ''/image_id: '$image'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Setup external_network_name" -get_external_net -sed -i -- "s/external_network_name: ''/external_network_name: '$EXTERNAL_NETWORK_NAME'/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup flavor_id" + flavor=$(nova flavor-show m1.large | awk "/ id / { print \$4 }") + sed -i -- "s/flavor_id: ''/flavor_id: '$flavor'/g" openstack-manager-blueprint-inputs.yaml -# By default, only the cloudify-management-router is setup as DNS server, and it was failing to resolve internet domain names, which was blocking download of needed resources -echo "cloudify-setup.sh: Add nameservers" -sed -i -- "s/#management_subnet_dns_nameservers: \[\]/management_subnet_dns_nameservers: \[8.8.8.8\]/g" openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: Setup external_network_name" + get_external_net + sed -i -- "s/external_network_name: ''/external_network_name: '$EXTERNAL_NETWORK_NAME'/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: Bootstrap the manager" -cfy bootstrap --install-plugins --keep-up-on-failure -p openstack-manager-blueprint.yaml -i openstack-manager-blueprint-inputs.yaml + # By default, only the cloudify-management-router is setup as DNS server, and it was failing to resolve internet domain names, which was blocking download of needed resources + echo "cloudify-setup.sh: Add nameservers" + sed -i -- "s/#management_subnet_dns_nameservers: \[\]/management_subnet_dns_nameservers: \[8.8.8.8\]/g" openstack-manager-blueprint-inputs.yaml -echo "cloudify-setup.sh: install needed packages on the manager to support blueprints 'not using managed plugins'" -# See https://cloudifysource.atlassian.net/browse/CFY-5050 -cfy ssh -c "sudo yum install -y gcc gcc-c++ python-devel" + echo "cloudify-setup.sh: Bootstrap the manager" + cfy bootstrap --install-plugins --keep-up-on-failure -p openstack-manager-blueprint.yaml -i openstack-manager-blueprint-inputs.yaml + echo "cloudify-setup.sh: install needed packages to support blueprints 'not using managed plugins'" + # See https://cloudifysource.atlassian.net/browse/CFY-5050 + cfy ssh -c "sudo yum install -y gcc gcc-c++ python-devel" +fi |