3799e9bc28
Devstack plugin for masakari in masakari source tree. Co-Authored-By: Dinesh Bhor <dinesh.bhor@nttdata.com> Change-Id: Iae1da53cd7bd63872aa6492021c6d9c610e61d01
40 lines
902 B
ReStructuredText
40 lines
902 B
ReStructuredText
=============================
|
|
Enabling Masakari in DevStack
|
|
=============================
|
|
|
|
To enable Masakari in DevStack, perform the following steps:
|
|
|
|
|
|
Download DevStack
|
|
=================
|
|
|
|
.. sourcecode:: bash
|
|
|
|
export DEVSTACK_DIR=~/devstack
|
|
git clone git://git.openstack.org/openstack-dev/devstack.git $DEVSTACK_DIR
|
|
|
|
Enable the Masakari plugin
|
|
==========================
|
|
|
|
Enable the plugin by adding the following section to ``$DEVSTACK_DIR/local.conf``
|
|
|
|
.. sourcecode:: bash
|
|
|
|
[[local|localrc]]
|
|
enable_plugin masakari git://git.openstack.org/openstack/masakari
|
|
|
|
Optionally, a git refspec (branch or tag or commit) may be provided as follows:
|
|
|
|
.. sourcecode:: bash
|
|
|
|
[[local|localrc]]
|
|
enable_plugin masakari git://git.openstack.org/openstack/masakari <refspec>
|
|
|
|
Run the DevStack utility
|
|
========================
|
|
|
|
.. sourcecode:: bash
|
|
|
|
cd $DEVSTACK_DIR
|
|
./stack.sh
|