cloudkitty/devstack/README.rst
Luka Peschke a3a1ee6416 Update devstack/README.rst
* Horizon is enabled by default, so there is no need to enable it.
       * The Gnocchi plugin should be enabled
       * The CloudKitty services need to be enabled

Change-Id: I2b0bac8c8c62479a4701f66efc2703e12ecbaaa3
2017-10-24 17:38:28 +02:00

41 lines
1.0 KiB
ReStructuredText

====================================
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 Gnocchi::
$ cd ${DEVSTACK_DIR}
$ cat >> local.conf << EOF
# gnocchi
enable_plugin gnocchi https://github.com/gnocchixyz/gnocchi
enable_service gnocchi-api, gnocchi-metricd
EOF
3. 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
Run devstack as normal::
$ ./stack.sh