
This function is deprecated and will be removed after Queens. Change-Id: I780c0ce7fe618bd0cd23194224d8ed14c3723cdc
Installing CloudKitty using DevStack
The devstack
directory contains the required files to
integrate CloudKitty with DevStack.
Configure DevStack to run CloudKitty
$ DEVSTACK_DIR=/path/to/devstack
enable Ceilometer:
$ cd ${DEVSTACK_DIR} $ cat >> local.conf << EOF
local # ceilometer enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master EOF
enable CloudKitty:
$ cd ${DEVSTACK_DIR}
cat >> local.conf << EOF # cloudkitty enable_plugin cloudkitty https://git.openstack.org/openstack/cloudkitty master enable_service ck-api, ck-proc EOF
Set CloudKitty collector to gnocchi:
$ cd ${DEVSTACK_DIR}
cat >> local.conf << EOF CLOUDKITTY_COLLECTOR=gnocchi EOF
Run devstack as usual:
$ ./stack.sh
See the documentation if you want more details about how to configure the devstack plugin.