OpenStack specific configuration files

These files contain credentials (config/credentials) and other
configuration settings (config/openstack) used by OpenStack.

Partial-Bug: 1312764
Implements: blueprint openstack-training-labs
Change-Id: I7bfeca8c781e20d0e93254e19246ca445e5c3b63
This commit is contained in:
Roger Luethi 2014-06-17 14:15:59 +02:00
parent c5ce58a26b
commit 8e16fcd6b7
2 changed files with 25 additions and 0 deletions

13
labs/config/credentials Normal file
View File

@ -0,0 +1,13 @@
# This file contains user names, passwords, and tokens that are set and used
# by OpenStack applications and related software running in the VMs.
# Note that the VM shell user and its password are not set here. By default,
# those are hard-coded in the preseed/kickstart files or in the Vagrant base
# box. The scripts get the shell user name from deploy.{osbash,vagrant} and
# don't need a password (they use password-less sudo and -- if configured --
# ssh keys).
# Used for MySQL or whatever other DBMS is configured
: ${DATABASE_PASSWORD:=secrete}
# vim: set ai ts=4 sw=4 et ft=sh:

12
labs/config/openstack Normal file
View File

@ -0,0 +1,12 @@
# 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}
# 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}
# vim: set ai ts=4 sw=4 et ft=sh: