
Following actions are performed by this patch: 1) Adds the ceilometer packages to the pre-download script. 2) Adds telemetry services on controller node. 3) Configures glance, cinder to send notification to the telemetry module. 4) Adds ceilometer compute agent on compute node. Co-authored-by: Pranav Salunke <dguitarbite@gmail.com> Change-Id: I82e8f4799e724e09748bb9c743ec8b77e82af39a
49 lines
1.6 KiB
Bash
49 lines
1.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_PASSWORD:=rabbitPass}
|
|
|
|
# Tenant and role for admin accounts
|
|
: ${ADMIN_ROLE_NAME:=admin}
|
|
: ${ADMIN_TENANT_NAME:=admin}
|
|
|
|
# Member role for generic use
|
|
: ${MEMBER_ROLE_NAME:=_member_}
|
|
|
|
# User name and password for administrator
|
|
: ${ADMIN_USER_NAME:=admin}
|
|
: ${ADMIN_PASSWORD:=admin_pass}
|
|
|
|
# Tenant name, user name and password for normal (demo) user
|
|
: ${DEMO_TENANT_NAME:=demo}
|
|
: ${DEMO_USER_NAME:=demo}
|
|
: ${DEMO_PASSWORD:=demo_pass}
|
|
|
|
# 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.
|
|
|
|
# Tenant and role for service accounts.
|
|
: ${SERVICE_TENANT_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}
|
|
|
|
# Metering secret used by ceilometer.
|
|
: ${METERING_SECRET:=osbash_training}
|
|
|
|
# vim: set ai ts=4 sw=4 et ft=sh:
|