Files
cloudkitty/devstack
Guillaume Espanel d6b61b97b7 Use local.conf instead of localrc in devstack doc
The plugin.sh file contained a reference to the localrc configuration
file, but devstack is now configured by a local.conf file.

Change-Id: I37a73b9ef1dc1f8f1a6f640f65240997e132e9fd
2016-08-24 11:01:17 +00: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