cloudkitty/devstack
Pedro Henrique 3114c3f979 Add grenade tests
Change-Id: I427d4b91cc5da9e9b2ffdb4239a5256ab44a1e06
2024-03-05 18:06:11 +01:00
..
files Update the devstack plugin 2019-03-21 09:18:32 +00:00
upgrade Add grenade tests 2024-03-05 18:06:11 +01:00
README.rst Replace git.openstack.org URLs with opendev.org URLs 2019-04-24 14:13:58 +08:00
apache-cloudkitty.template Use DevStack VENV path 2023-08-23 17:01:01 -03:00
plugin.sh Merge "Add support to InfluxDB v2 as storage backend" 2024-02-19 16:03:46 +00:00
settings Add support to InfluxDB v2 as storage backend 2024-02-19 15:30:37 +01:00

README.rst

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.