
This is a mechanically generated change to replace openstack.org git:// URLs with https:// equivalents. This is in aid of a planned future move of the git hosting infrastructure to a self-hosted instance of gitea (https://gitea.io), which does not support the git wire protocol at this stage. This update should result in no functional change. For more information see the thread at http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html Change-Id: Id4587acdd0432afbda288280a782641da516be1f
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
EXTRA_OPTS=(force_config_drive=true libvirt_images_type=qcow2 force_raw_images=false)
|
|
|
|
ADMIN_PASSWORD=nova
|
|
MYSQL_PASSWORD=nova
|
|
RABBIT_PASSWORD=nova
|
|
SERVICE_PASSWORD=$ADMIN_PASSWORD
|
|
SERVICE_TOKEN=nova
|
|
|
|
RECLONE=yes
|
|
API_RATE_LIMIT=False
|
|
|
|
# Enable Swift services
|
|
enable_service s-proxy s-object s-container s-account
|
|
SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5c2000f5
|
|
SWIFT_REPLICAS=1
|
|
SWIFT_LOOPBACK_DISK_SIZE=80G
|
|
|
|
# Enable Heat API
|
|
enable_plugin heat https://git.openstack.org/openstack/heat
|
|
|
|
CINDER_SECURE_DELETE=False
|
|
VOLUME_BACKING_FILE_SIZE=100000M
|
|
|
|
# keystone is now configured by default to use PKI as the token format which produces huge tokens.
|
|
# set UUID as keystone token format which is much shorter and easier to work with.
|
|
KEYSTONE_TOKEN_FORMAT=UUID
|
|
|
|
FIXED_NETWORK_SIZE=256
|
|
if [[ $(hostname -s) =~ stack-42 ]]; then
|
|
FLOATING_RANGE=172.18.169.0/26
|
|
PUBLIC_NETWORK_GATEWAY=172.18.169.1
|
|
else
|
|
FLOATING_RANGE=172.16.41.0/26
|
|
PUBLIC_NETWORK_GATEWAY=172.16.41.1
|
|
fi
|
|
NETWORK_GATEWAY=10.20.0.1
|
|
FIXED_RANGE=10.20.0.0/24
|
|
IP_VERSION="4"
|
|
|
|
disable_service tempest
|
|
|
|
# Setup logging
|
|
LOGDAYS=1
|
|
LOG_COLOR=False
|
|
|
|
IMAGE_URLS=https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img
|