Jump to: navigation, search

Blazar/Installation using Devstack

< Blazar
Revision as of 17:27, 7 January 2016 by Pierre Riteau (talk | contribs) (Installation guide: Update GitHub repo URL)

Installation guide

This page includes instructions for Blazar installation using Devstack.

1. Download Devstack:

   git clone https://github.com/openstack-dev/devstack.git

2. Download Blazar:

   git clone https://github.com/openstack/blazar.git

3. Add Blazar files to Devstack:

   cd blazar/contrib/devstack
   DEVSTACK_DIR=../../../devstack
   cp lib/blazar ${DEVSTACK_DIR}/lib
   cp extras.d/70-blazar.sh ${DEVSTACK_DIR}/extras.d

4. Configure devstack to run Blazar by adding blazar, blazar api and blazar manager to the localrc file:

   cd ${DEVSTACK_DIR}
   echo "enable_service blazar" >> localrc
   echo "enable_service blazar-a" >> localrc
   echo "enable_service blazar-m" >> localrc

5. Run Devstack:

   ./stack.sh