Roger Luethi 1a56b106ca labs: CirrOS image: check md5sum; URL in config/openstack
Copy the CirrOS image to the base disk even if the IMG_DIR is shared
with the host computer (the image in IMG_DIR remains as a cache).

Check md5sum for CirrOS image after copying it to the base disk.

CIRROS_URL is now stored in config/openstack to allow CirrOS version
upates in one location.

Change-Id: If0cf35d3806e3478875c5cceeaceca683fe1a58e
2014-09-23 16:48:12 +02:00

33 lines
1.1 KiB
Bash

# This file contains OpenStack configuration data. It is used by both
# host (osbash, Windows batch) and VM guest scripts.
# one of: folsom, grizzly, havana, icehouse
: ${OPENSTACK_RELEASE:=icehouse}
# CirrOS image URL
CIRROS_URL="http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img"
# Networks used by OpenStack training-labs setup
: ${MGMT_NET:=10.10.10.1}
: ${DATA_NET:=10.20.20.1}
: ${API_NET:=192.168.100.1}
# FIXME API_NET and EXT_NET should be different networks as soon as our
# setup allows it.
: ${EXT_NET:=192.168.100.1}
# EXT_NET
: ${FLOATING_IP_START:=192.168.100.101}
: ${FLOATING_IP_END:=192.168.100.200}
: ${EXTERNAL_NETWORK_GATEWAY:=192.168.100.1}
: ${EXTERNAL_NETWORK_CIDR:=192.168.100.0/24}
# DEMO_NET
: ${TENANT_NETWORK_GATEWAY:=172.16.0.1}
: ${TENANT_NETWORK_CIDR:=172.16.0.0/24}
# Comma-separated list of DNS name servers used by dnsmasq to serve instance
# VMs in neutron subnets with dns_nameservers unset.
# Default is Google Public DNS (8.8.8.8); to disable, set to "".
: ${TENANT_VM_DNS_SERVER:=8.8.8.8}
# vim: set ai ts=4 sw=4 et ft=sh: