Files
training-labs/labs/osbash/config/credentials
Roger Luethi 8ff32fa5a5 Mitaka updates
This changeset contains updates for Mitaka.

To build the basedisk (if necessary) and the cluster and launch a test VM
once:
./tools/repeat-test.sh -b -r 1

To test Orchestration:

./tools/test-once.sh scripts/test/heat_stack.sh

Change-Id: Idd96525c14abd5903a6631095ccd6797ba91365c
2016-04-09 09:23:49 +02:00

86 lines
2.6 KiB
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. The scripts get the
# shell user name from deploy.{osbash} 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}
# Used for MySQL or whatever other DBMS is configured
: ${RABBIT_PASS:=rabbitPass}
# Project and role for admin accounts
: ${ADMIN_ROLE_NAME:=admin}
: ${ADMIN_PROJECT_NAME:=admin}
# Member role for generic use
: ${MEMBER_ROLE_NAME:=_member_}
# User name and password for administrator
: ${ADMIN_USER_NAME:=admin}
#------------------------------------------------------------------------------
# Passwords for OpenStack services
# http://docs.openstack.org/mitaka/install-guide-ubuntu/environment-security.html
#------------------------------------------------------------------------------
: ${ADMIN_PASS:=admin_user_secret}
: ${CEILOMETER_DB_USER:=ceilometer}
: ${CEILOMETER_DBPASS:=ceilometer_db_secret}
: ${CEILOMETER_PASS:=ceilometer_user_secret}
: ${CINDER_DB_USER:=cinder}
: ${CINDER_DBPASS:=cinder_db_secret}
: ${CINDER_PASS:=cinder_user_secret}
: ${GLANCE_DB_USER:=glance}
: ${GLANCE_DBPASS:=glance_db_secret}
: ${GLANCE_PASS:=glance_user_secret}
: ${HEAT_DB_USER:=heat}
: ${HEAT_DBPASS:=heat_db_secret}
: ${HEAT_DOMAIN_PASS:=heat_dom_pw}
: ${HEAT_PASS:=heat_user_secret}
: ${KEYSTONE_DB_USER:=keystone}
: ${KEYSTONE_DBPASS:=keystone_db_secret}
: ${NEUTRON_DB_USER:=neutron}
: ${NEUTRON_DBPASS:=neutron_db_secret}
: ${NEUTRON_PASS:=neutron_user_secret}
: ${NOVA_DB_USER:=nova}
: ${NOVA_DBPASS:=nova_db_secret}
: ${NOVA_PASS:=nova_user_secret}
# Project name, user name and password for normal (demo) user
: ${DEMO_PROJECT_NAME:=demo}
: ${DEMO_USER_NAME:=demo}
: ${DEMO_PASS:=demo_user_pass}
# User role
: ${USER_ROLE_NAME:=user}
# OpenStack Services needs to be affiliated with a tenant to provide
# authentication to other OpenStack services. We create a "service" tenant for
# the OpenStack services. All the OpenStack services will be registered via
# service tenant.
# Project and role for service accounts.
: ${SERVICE_PROJECT_NAME:=service}
# Domain to use for email addresses (e.g. admin@example.com)
: ${MAIL_DOMAIN:=example.com}
# Metadata secret used by neutron and nova.
: ${METADATA_SECRET:=osbash_training}
# Telemetry secret used by ceilometer.
: ${TELEMETRY_SECRET:=osbash_training}
# vim: set ai ts=4 sw=4 et ft=sh: