4dd1eb113d
Change-Id: If9140e12879bcbb850ab58ade2a88cfc703b98c7 |
||
---|---|---|
.. | ||
extras.d | ||
lib | ||
README.rst |
Installing CloudKitty using devstack
The contrib/devstack/ directory contains the files necessary to integrate CloudKitty with devstack.
Install:
$ DEVSTACK_DIR=/path/to/devstack
$ CLOUDKITTY_DIR=/path/to/cloudkitty
$ cd ${CLOUDKITTY_DIR}/contrib/devstack
$ cp lib/cloudkitty ${DEVSTACK_DIR}/lib
$ cp extras.d/70-cloudkitty.sh ${DEVSTACK_DIR}/extras.d
Configure devstack to run CloudKitty
enable Ceilometer:
$ cd ${DEVSTACK_DIR} $ echo "# ceilometer" >> local.conf $ echo "enable_service ceilometer-acompute ceilometer-acentral ceilometer-anotification ceilometer-collector >> local.conf $ echo "enable_service ceilometer-alarm-notifier ceilometer-alarm-evaluator" >> local.conf $ echo "enable_service ceilometer-api" >> local.conf
enable CloudKitty:
$ cd ${DEVSTACK_DIR} $ echo "# cloudkitty" >> local.conf $ echo "enable_service ck-api ck-proc" >> local.conf
Run devstack as normal:
$ ./stack.sh