93d420b361
TEMPEST_SERVICES global variable is not supported by devstack since long back. - I380dd20e5ed716a0bdf92aa02c3730359b8136e4 - I9c24705e494689f09a885eb0a640efd50db33fcf Service availability of tempest known services will be set by devstack with local check. - I02be777bf93143d946ccbb8e9eff637bfd1928d4 cloudkitty does not have tempest plugin so it does not need to have service register in tempest. This commit removes the TEMPEST_SERVICES setting. Change-Id: Ica3d142ad1c95379771fc1f045dd7e80ca0452a5 Related-Bug: #1743688 |
||
---|---|---|
.. | ||
apache-cloudkitty.template | ||
plugin.sh | ||
README.rst | ||
settings |
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
enable Ceilometer:
$ cd ${DEVSTACK_DIR} $ cat >> local.conf << EOF [[local|localrc]] # ceilometer enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master EOF
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
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