Files
cloudkitty/devstack
Christophe Sauthier 8e38bd4e61 Use keystone v3 instead of keystone v2 in cloudkitty's devstack plugin
Change-Id: I4b5bc6430144a41aa16c69900489fcc54febf561
Closes-Bug: #1649053
2016-12-12 17:14:24 +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