aodh/devstack/settings
Takashi Kajinami 5b4f3c8bc8 devstack: Remove support for "simple" api service
Aodh does not provide the standalone api service, but only wsgi
application run by mod_wsgi or uwsgi.

Change-Id: Ia13a75e4cf5e5ecc1b9c1e227b5f320275934975
2024-11-23 18:02:31 +09:00

42 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=${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
# - uwsgi : Run Aodh under uwsgi
AODH_DEPLOY=${AODH_DEPLOY:-uwsgi}
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
GITREPO["python-aodhclient"]=$GIT_BASE/openstack/python-aodhclient.git
# Get rid of this before done.
# Tell emacs to use shell-script-mode
## Local variables:
## mode: shell-script
## End: