File: README.rst

package info (click to toggle)
cloudkitty 8.0.0-4%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,904 kB
  • sloc: python: 13,445; sh: 303; makefile: 216
file content (45 lines) | stat: -rw-r--r-- 1,093 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
====================================
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://git.openstack.org/openstack/ceilometer.git master
   EOF

2. 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

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.

.. _documentation: https://docs.openstack.org/cloudkitty/latest/devstack.html