From cac1317676dcb0efa489dd667793cf4f6b366170 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Thu, 23 Oct 2014 10:52:40 -0700 Subject: [PATCH] Move to download.fedoraproject.org download.fedoraproject.org is the mirror system, while dl.fedoraproject.org is just one system. We have seen performance issues with dl.fedoraproject.org and using download.fedoraproject.org was a recommended as a solution by the folks at #fedora-admin. Local testing on a rackspace server with dl.fedoraproject.org got about 70K/s while download.fedoraproject.org got over 1M/s Move over to https as well. Related-Bug: #1383928 Change-Id: I318d8844cfcfbc42c1e552e443c6b793d20f321f --- stackrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stackrc b/stackrc index 389952508d..6cec8e85fb 100644 --- a/stackrc +++ b/stackrc @@ -514,7 +514,7 @@ esac if [[ "$ENABLED_SERVICES" =~ 'h-api' ]]; then case "$VIRT_DRIVER" in libvirt|baremetal|ironic) - HEAT_CFN_IMAGE_URL=${HEAT_CFN_IMAGE_URL:-"http://dl.fedoraproject.org/pub/alt/openstack/20/x86_64/Fedora-x86_64-20-20140618-sda.qcow2"} + HEAT_CFN_IMAGE_URL=${HEAT_CFN_IMAGE_URL:-"https://download.fedoraproject.org/pub/alt/openstack/20/x86_64/Fedora-x86_64-20-20140618-sda.qcow2"} IMAGE_URLS+=",$HEAT_CFN_IMAGE_URL" ;; *) @@ -539,7 +539,7 @@ fi PRECACHE_IMAGES=$(trueorfalse False $PRECACHE_IMAGES) if [[ "$PRECACHE_IMAGES" == "True" ]]; then # staging in update for nodepool - IMAGE_URL="http://dl.fedoraproject.org/pub/alt/openstack/20/x86_64/Fedora-x86_64-20-20140618-sda.qcow2" + IMAGE_URL="https://download.fedoraproject.org/pub/alt/openstack/20/x86_64/Fedora-x86_64-20-20140618-sda.qcow2" if ! [[ "$IMAGE_URLS" =~ "$IMAGE_URL" ]]; then IMAGE_URLS+=",$IMAGE_URL" fi