Browse code

Remove mysql.qcow2 from stackrc

We no longer host this on tarballs.o.o, additionally it is no longer
used my trove.

Change-Id: I2034e8ebc530704d6e63a231056f92e14a8654e4
Signed-off-by: Paul Belanger <pabelanger@redhat.com>

Paul Belanger authored on 2017/07/12 00:25:19
Showing 1 changed files
... ...
@@ -727,23 +727,6 @@ if [[ "$DOWNLOAD_DEFAULT_IMAGES" == "True" ]]; then
727 727
     DOWNLOAD_DEFAULT_IMAGES=False
728 728
 fi
729 729
 
730
-# Staging area for new images.  These images are cached by a run of
731
-# ./tools/image_list.sh during CI image build (see
732
-# project-config:nodepool/elements/cache-devstack/extra-data.d/55-cache-devstack-repos).
733
-#
734
-# To avoid CI failures grabbing the images, new images should be here
735
-# for at least 24hrs (nodepool builds images at 14:00UTC) so the they
736
-# are in the cache.
737
-PRECACHE_IMAGES=$(trueorfalse False PRECACHE_IMAGES)
738
-if [[ "$PRECACHE_IMAGES" == "True" ]]; then
739
-    # required for trove devstack tests; see
740
-    #  git.openstack.org/cgit/openstack/trove/tree/devstack/plugin.sh
741
-    IMAGE_URL="http://tarballs.openstack.org/trove/images/ubuntu/mysql.qcow2"
742
-    if ! [[ "$IMAGE_URLS"  =~ "$IMAGE_URL" ]]; then
743
-        IMAGE_URLS+=",$IMAGE_URL"
744
-    fi
745
-fi
746
-
747 730
 # Detect duplicate values in IMAGE_URLS
748 731
 for image_url in ${IMAGE_URLS//,/ }; do
749 732
     if [ $(echo "$IMAGE_URLS" | grep -o -F "$image_url" | wc -l) -gt 1 ]; then