Update devstack config to point to a valid image

The devstack config we link to in the docs has been out of date for
quite some time. I usually just comment out the IMAGE_URLS line so
it doesn't even bother, but we should actually update it. The change
falls in line with what the Heat docs recommend, and it's because of
Heat that we have this configuration line in the first place.

See
https://docs.openstack.org/developer/heat/getting_started/on_devstack.html
for their recommended config.

Change-Id: I3f55c576f0e8aefa776e40509f8b7b098665ff39
This commit is contained in:
Brian Curtin 2017-03-01 15:31:30 -05:00
parent adfbf65c14
commit 292e297e49
1 changed files with 4 additions and 1 deletions

View File

@ -58,7 +58,10 @@ enable_service h-api-cw
# Automatically download and register a VM image that Heat can launch
# For more information on Heat and DevStack see
# http://docs.openstack.org/developer/heat/getting_started/on_devstack.html
IMAGE_URLS+=",http://cloud.fedoraproject.org/fedora-20.x86_64.qcow2"
IMAGE_URL_SITE="http://download.fedoraproject.org"
IMAGE_URL_PATH="/pub/fedora/linux/releases/25/CloudImages/x86_64/images/"
IMAGE_URL_FILE="Fedora-Cloud-Base-25-1.3.x86_64.qcow2"
IMAGE_URLS+=","$IMAGE_URL_SITE$IMAGE_URL_PATH$IMAGE_URL_FILE
# Logging
LOGDAYS=1