Refresh the glance images for squid and te-broker

We shouldn't use load-image because it does bound kernels and we don't
need that in virt, so for now just delete-and-add.

Change-Id: Ie8ca0df410d5644deb459c2ba0c48af94f73c68a
This commit is contained in:
Robert Collins 2014-07-24 14:02:12 +12:00 committed by James Polley
parent 00957cad13
commit 79bc2a14bf
1 changed files with 8 additions and 4 deletions

View File

@ -65,9 +65,11 @@ if [ ! -e $BROKER_IMG -o "$USE_CACHE" != "1" ] ; then
$TRIPLEO_ROOT/diskimage-builder/bin/disk-image-create -a amd64 -o $BROKER_IMG \
$TE_DISTRO vm geard stackuser dhcp-all-interfaces
fi
if ! glance image-show "te-broker" ; then
glance image-create --name "te-broker" --disk-format qcow2 --container-format bare --is-public 1 --file $BROKER_IMG --progress
# XXX(lifeless) make a load-image patch for virt use
if glance image-show te-broker &> /dev/null; then
glance image-delete te-broker
fi
glance image-create --name "te-broker" --disk-format qcow2 --container-format bare --is-public 1 --file $BROKER_IMG --progress
NP_CREDS="--os-username=tripleo-ci --os-password=$TE_OVERCLOUDPASSWD --os-tenant-name=openstack-nodepool"
if ! nova $NP_CREDS keypair-list | grep -q " default "; then
@ -84,9 +86,11 @@ if [ ! -e $SQUID_IMG -o "$USE_CACHE" != "1" ] ; then
$TRIPLEO_ROOT/diskimage-builder/bin/disk-image-create -a amd64 -o $SQUID_IMG \
$TE_DISTRO vm squid stackuser dhcp-all-interfaces
fi
if ! glance image-show squid ; then
glance image-create --name squid --disk-format qcow2 --container-format bare --is-public 1 --file $SQUID_IMG --progress
# XXX(lifeless) make a load-image patch for virt use
if glance image-show squid &> /dev/null; then
glance image-delete squid
fi
glance image-create --name squid --disk-format qcow2 --container-format bare --is-public 1 --file $SQUID_IMG --progress
if ! nova $NP_CREDS show squid ; then
nova $NP_CREDS boot --image "squid" --flavor $TE_BROKER_FLAVOR --nic net-id=$DEFAULT_NET --nic net-id=$TESTNETID,v4-fixed-ip=192.168.1.253 --key-name default squid