# This file contains OpenStack configuration data. It is used by both
# host (osbash, Windows batch) and VM guest scripts.

# one of: icehouse, juno, kilo
: ${OPENSTACK_RELEASE:=kilo}

# CirrOS image URL
CIRROS_URL="http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img"

#------------------------------------------------------------------------------
# http://docs.openstack.org/kilo/install-guide/install/apt/content/ch_basic_environment.html#basics-networking
#------------------------------------------------------------------------------

# Networks used by OpenStack training-labs setup
NETWORK_1="mgmt 10.0.0.0"
NETWORK_2="tunnel 10.0.1.0"
# API/external network
NETWORK_3="api 203.0.113.0"

# External network
: ${FLOATING_IP_START:=203.0.113.101}
: ${FLOATING_IP_END:=203.0.113.200}
: ${EXTERNAL_NETWORK_GATEWAY:=203.0.113.1}
: ${EXTERNAL_NETWORK_CIDR:=203.0.113.0/24}

#------------------------------------------------------------------------------
# http://docs.openstack.org/kilo/install-guide/install/apt/content/neutron_initial-tenant-network.html
#------------------------------------------------------------------------------

# DEMO_NET
: ${TENANT_NETWORK_GATEWAY:=192.168.1.1}
: ${TENANT_NETWORK_CIDR:=192.168.1.0/24}

# DNS name server used by instance VMs.
# Default is Google Public DNS (8.8.4.4).
: ${TENANT_VM_DNS_SERVER:=8.8.4.4}

: ${REGION:=RegionOne}

# vim: set ai ts=4 sw=4 et ft=sh:
