
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
14 lines
589 B
Bash
14 lines
589 B
Bash
# 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:
|