Merge "Add a pypi mirror to the ci overcloud"

This commit is contained in:
Jenkins 2014-12-12 18:53:17 +00:00 committed by Gerrit Code Review
commit 5e2725f372
1 changed files with 22 additions and 0 deletions

View File

@ -42,6 +42,9 @@ keystone user-role-add --role Member --user tripleo-ci --tenant openstack-nodepo
# Create the flavor nodepool uses
nova flavor-show h1.ci || nova flavor-create h1.ci auto 8192 20 1
# Create a flavor for mirrors with more disk space then is normal
nova flavor-show d1.medium || nova flavor-create d1.medium auto 4096 200 2
# The the images that nodepool uses to creat templates
FEDORA_IMAGE=$(wget -q http://dl.fedoraproject.org/pub/fedora/linux/updates/20/Images/x86_64/ -O - | grep -o -E 'href="([^"#]+qcow2)"' | cut -d'"' -f2)
F20_IMAGE_FILE=$TRIPLEO_ROOT/fedora-20.x86_64.qcow2
@ -107,6 +110,25 @@ if ! nova $NP_CREDS show squid ; then
squid
fi
# Create and boot bandersnatch pypi mirror
BANDERSNATCH_IMG=$TRIPLEO_ROOT/bandersnatch.qcow2
if [ ! -e $BANDERSNATCH_IMG -o "$USE_CACHE" != "1" ] ; then
$TRIPLEO_ROOT/diskimage-builder/bin/disk-image-create -a amd64 -o $BANDERSNATCH_IMG \
$TE_DISTRO vm bandersnatch stackuser dhcp-all-interfaces
fi
# XXX(lifeless) make a load-image patch for virt use
if glance image-show bandersnatch &> /dev/null; then
glance image-delete bandersnatch
fi
glance image-create --name bandersnatch --disk-format qcow2 --container-format bare --is-public 1 --file $BANDERSNATCH_IMG --progress
if ! nova $NP_CREDS show bandersnatch ; then
nova $NP_CREDS boot --image "bandersnatch" --flavor d1.medium \
--nic net-id=$DEFAULT_NET \
--nic net-id=$TESTNETID,v4-fixed-ip=172.16.3.252 --key-name default \
bandersnatch
fi
# Assign a floting IP to the broker
TE_ID=$(nova $NP_CREDS show te-broker | awk '$2=="id" { print $4 }')
FLOATING_IP=$(nova $NP_CREDS floating-ip-list | awk '$4=="'$TE_ID'" {print $2}')