cloudkitty/devstack
Stéphane Albert 77347ae517 Fixed files to support liberty dashboard
Related-Bug: #1507087
Change-Id: I272fc8adb62f0bcc340c7bb3bfd9ed5cbdac42ec
2015-10-19 15:56:41 +02:00
..
plugin.sh Fixed files to support liberty dashboard 2015-10-19 15:56:41 +02:00
README.rst Updated files to the new namespace 2015-10-19 11:46:45 +02: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://github.com/openstack/cloudkitty master
    enable_service ck-api ck-proc
    EOF

Run devstack as normal:

$ ./stack.sh