Files
cloudkitty/devstack
Leonie Chamberlin-Medd ef3afbe019 Fix default value for CLOUDKITTY_FETCHER_METRIC
CLOUDKITTY_FETCHER_METRIC is set to openstack_identity_projects_info,
when it should be openstack_identity_project_info (no s in project).

Story: 2011512
Task: 52713
Change-Id: Ibd2cbbc8a35bee65cbee0e7b2cfc12b2fd0fca85
Signed-off-by: Leonie Chamberlin-Medd <leonie@stackhpc.com>
2025-08-22 06:53:05 +00:00
..
2019-03-21 09:18:32 +00:00
2024-03-05 18:06:11 +01:00

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
  1. Enable Ceilometer:

    $ cd ${DEVSTACK_DIR}
    $ cat >> local.conf << EOF
    [[local|localrc]]
    # ceilometer
    enable_plugin ceilometer https://opendev.org/openstack/ceilometer.git master
    EOF
  2. Enable CloudKitty:

    $ cd ${DEVSTACK_DIR}
    cat >> local.conf << EOF
    # cloudkitty
    enable_plugin cloudkitty https://opendev.org/openstack/cloudkitty master
    enable_service ck-api, ck-proc
    EOF
  3. 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.