Merge "OpenStack specific configuration files"

This commit is contained in:
Jenkins 2014-06-17 17:53:06 +00:00 committed by Gerrit Code Review
commit 5a4fccac65
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: