cloudkitty/devstack
Stéphane Albert 097e395cee Fix devstack cleanup of data dir
Remove wasn't recursive and failing on a second run.

Change-Id: Ieb125cc78a5db2d5d93c244a71a8a2ca027d600c
2016-04-18 17:03:32 +02:00
..
plugin.sh Fix devstack cleanup of data dir 2016-04-18 17:03:32 +02:00
README.rst Move global variables to settings file 2015-11-24 06:40:04 +01:00
settings Fixed devstack not creating folder for tooz locks 2016-03-25 13:36:18 +01:00

Installing CloudKitty using DevStack

The devstack directory contains the files necessary to integrate CloudKitty with DevStack.

Configure DevStack to run CloudKitty

$ DEVSTACK_DIR=/path/to/devstack

  1. enable Ceilometer:

    $ cd ${DEVSTACK_DIR}
    $ cat >> local.conf << EOF
    [[local|localrc]]
    # ceilometer
    enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master
    EOF
  2. enable Horizon:

    $ cd ${DEVSTACK_DIR}
    $ cat >> local.conf << EOF
    # horizon
    enable_service horizon
    EOF
  3. enable CloudKitty:

    $ cd ${DEVSTACK_DIR}
    cat >> local.conf << EOF
    # cloudkitty
    enable_plugin cloudkitty https://git.openstack.org/openstack/cloudkitty master
    EOF

Run devstack as normal:

$ ./stack.sh