Jump to: navigation, search

Difference between revisions of "Blazar/Installation using Devstack"

m (Sergey Lukjanov moved page Climate/Installation using Devstack to Blazar/Installation using Devstack: Climate project has been renamed to the Blazar project due to the possible trademark issues.)
(Update docs to reflect the name change of climate->blazar. Not updating the git links since those still appear to be valid.)
Line 12: Line 12:
 
     cd climate/contrib/devstack
 
     cd climate/contrib/devstack
 
     DEVSTACK_DIR=../../../devstack
 
     DEVSTACK_DIR=../../../devstack
     cp lib/climate ${DEVSTACK_DIR}/lib
+
     cp lib/blazar ${DEVSTACK_DIR}/lib
     cp extras.d/70-climate.sh ${DEVSTACK_DIR}/extras.d
+
     cp extras.d/70-blazar.sh ${DEVSTACK_DIR}/extras.d
  
 
4. Configure devstack to run climate by adding climate, climate api and climate manager to the localrc file:
 
4. Configure devstack to run climate by adding climate, climate api and climate manager to the localrc file:

Revision as of 21:59, 29 May 2014

Installation guide

This page includes instructions for Climate installation using Devstack.

1. Download Devstack:

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

2. Download Climate:

   git clone https://github.com/stackforge/climate.git

3. Add climate files to Devstack:

   cd climate/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 climate by adding climate, climate api and climate manager to the localrc file:

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

5. Run Devstack:

   ./stack.sh