Jump to: navigation, search

Difference between revisions of "Blazar/Installation using Devstack"

(Created page with "== Installation guide == This page includes instructions for Climate installation using Devstack. Download Devstack: git clone https://github.com/openstack-dev/devstack...")
 
(Modified to be a set of steps (unfortunately, I couldn't use the # markup due to blank lines and code in between). Reprhased in terms of actions (the line "to configure..." gave the idea of an optional step.)
Line 3: Line 3:
 
This page includes instructions for Climate installation using Devstack.
 
This page includes instructions for Climate installation using Devstack.
  
Download Devstack:
+
1. Download Devstack:
 
 
 
     git clone https://github.com/openstack-dev/devstack.git
 
     git clone https://github.com/openstack-dev/devstack.git
  
Download Climate:
+
2. Download Climate:
 
 
 
     git clone https://github.com/stackforge/climate.git
 
     git clone https://github.com/stackforge/climate.git
  
Than commit the following actions to add climate files to Devstack:
+
3. Add climate files to Devstack:
 
 
 
     cd climate/contrib/devstack
 
     cd climate/contrib/devstack
 
     DEVSTACK_DIR=../../../devstack
 
     DEVSTACK_DIR=../../../devstack
Line 18: Line 15:
 
     cp extras.d/70-climate.sh ${DEVSTACK_DIR}/extras.d
 
     cp extras.d/70-climate.sh ${DEVSTACK_DIR}/extras.d
  
To configure devstack to run climate type the following lines:
+
4. Configure devstack to run climate by adding climate, climate api and climate manager to the localrc file:
  
 
     cd ${DEVSTACK_DIR}
 
     cd ${DEVSTACK_DIR}
Line 25: Line 22:
 
     echo "enable_service climate-m" >> localrc
 
     echo "enable_service climate-m" >> localrc
  
Then run Devstack:
+
5. Run Devstack:
  
 
     ./stack.sh
 
     ./stack.sh

Revision as of 14:55, 21 February 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/climate ${DEVSTACK_DIR}/lib
   cp extras.d/70-climate.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