cloudkitty/devstack
ghanshyam 93d420b361 Remove use of unsupported TEMPEST_SERVICES variable
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
2018-01-23 16:47:08 +03:00
..
apache-cloudkitty.template Add WSGI support for `cloudkitty-api' 2017-07-18 12:55:11 +02:00
plugin.sh Policy in code 2017-12-08 16:45:13 +00:00
README.rst Update devstack/README.rst 2017-10-24 17:38:28 +02:00
settings Remove use of unsupported TEMPEST_SERVICES variable 2018-01-23 16:47:08 +03: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 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