aodh/devstack/settings
Takashi Kajinami 97e7362624 Use common helper to generate uwsgi setting
... to reduce own logic in our devstack plugin. Note that this adds
apache web server in front of aodh-api run by uwsgi, following
the standard architecture in devstack.

Change-Id: Id7c67ab692105383ad46a5663aff05710485192d
2024-11-25 03:27:25 +09:00

37 lines
999 B
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_UWSGI_CONF=$AODH_CONF_DIR/aodh-uwsgi.ini
AODH_UWSGI=$AODH_DIR/aodh/api/app.wsgi
# 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_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: