cloudkitty/devstack
Stéphane Albert 91b6216976 Fixed Horizon static file compression in devstack
Static files needs to be compressed in Horizon. Since CloudKitty is
loaded as a devstack plugin its files are copied after Horizon
initialization. This patch add calls to django-admin to process new
files.

Change-Id: I51b703f682b74a35a1fb6cad64856093011ee2e2
2015-11-26 11:17:47 +01:00
..
README.rst Move global variables to settings file 2015-11-24 06:40:04 +01:00
plugin.sh Fixed Horizon static file compression in devstack 2015-11-26 11:17:47 +01:00
settings Move global variables to settings file 2015-11-24 06:40:04 +01:00

README.rst

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