1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
=============================
Enabling Masakari in DevStack
=============================
To enable Masakari in DevStack, perform the following steps:
Download DevStack
=================
.. sourcecode:: bash
export DEVSTACK_DIR=~/devstack
git clone https://opendev.org/openstack/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 https://opendev.org/openstack/masakari
Optionally, a git refspec (branch or tag or commit) may be provided as follows:
.. sourcecode:: bash
[[local|localrc]]
enable_plugin masakari https://opendev.org/openstack/masakari <refspec>
Run the DevStack utility
========================
.. sourcecode:: bash
cd $DEVSTACK_DIR
./stack.sh
|