f9d322ea9e
TEMPEST_SERVICES global variable is not supported by devstack since long back. - I380dd20e5ed716a0bdf92aa02c3730359b8136e4 - I9c24705e494689f09a885eb0a640efd50db33fcf Service availability of tempest known services will be set by devstack with local check. - I02be777bf93143d946ccbb8e9eff637bfd1928d4 This commit removes the unused TEMPEST_SERVICES setting Related-Bug: #1743688 Change-Id: I753390dd237dd5091025d7fea8f6153fc5362a0f
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
# turn on all the aodh services by default
|
|
# API service
|
|
enable_service aodh-api
|
|
# Alarming
|
|
enable_service aodh-notifier aodh-evaluator
|
|
# Listener for Event Alarming
|
|
enable_service aodh-listener
|
|
|
|
# Default directories
|
|
AODH_DIR=$DEST/aodh
|
|
AODH_CONF_DIR=/etc/aodh
|
|
AODH_CONF=$AODH_CONF_DIR/aodh.conf
|
|
AODH_AUTH_CACHE_DIR=${AODH_AUTH_CACHE_DIR:-/var/cache/aodh}
|
|
AODH_WSGI_DIR=${AODH_WSGI_DIR:-/var/www/aodh}
|
|
|
|
# Set up database backend
|
|
AODH_BACKEND=${AODH_BACKEND:-mysql}
|
|
|
|
# Aodh connection info.
|
|
AODH_SERVICE_PROTOCOL=http
|
|
AODH_SERVICE_HOST=$SERVICE_HOST
|
|
AODH_SERVICE_PORT=${AODH_SERVICE_PORT:-8042}
|
|
|
|
# AODH_DEPLOY defines how Aodh is deployed, allowed values:
|
|
# - mod_wsgi : Run Aodh under Apache HTTPd mod_wsgi
|
|
# - simple : Run aodh-api
|
|
# - uwsgi : Run Aodh under uwsgi
|
|
# - <empty>: Fallback to AODH_USE_MOD_WSGI or ENABLE_HTTPD_MOD_WSGI_SERVICES
|
|
AODH_DEPLOY=${AODH_DEPLOY}
|
|
|
|
AODH_NOTIFICATION_TOPICS=${AODH_NOTIFICATION_TOPICS:-notifications}
|
|
|
|
AODH_COORDINATION_URL=${AODH_COORDINATION_URL:-}
|
|
|
|
# Set up default directories for client
|
|
GITDIR["python-aodhclient"]=$DEST/python-aodhclient
|
|
|
|
# Get rid of this before done.
|
|
# Tell emacs to use shell-script-mode
|
|
## Local variables:
|
|
## mode: shell-script
|
|
## End:
|