Hard to read README from github because of wrong format

Replace three spaces with four spaces.

Change-Id: Ic657ec34aa1b1ee32dca4235aaccd558250f7736
This commit is contained in:
zhu.boxiang 2018-09-12 11:19:12 +08:00
parent cdfa55c2bf
commit f1e7d3ef11
1 changed files with 19 additions and 19 deletions

View File

@ -10,34 +10,34 @@ Configure DevStack to run CloudKitty
$ DEVSTACK_DIR=/path/to/devstack $ DEVSTACK_DIR=/path/to/devstack
1. enable Ceilometer:: 1. Enable Ceilometer::
$ cd ${DEVSTACK_DIR} $ cd ${DEVSTACK_DIR}
$ cat >> local.conf << EOF $ cat >> local.conf << EOF
[[local|localrc]] [[local|localrc]]
# ceilometer # ceilometer
enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer.git master
EOF EOF
2. enable CloudKitty:: 2. Enable CloudKitty::
$ cd ${DEVSTACK_DIR} $ cd ${DEVSTACK_DIR}
cat >> local.conf << EOF cat >> local.conf << EOF
# cloudkitty # cloudkitty
enable_plugin cloudkitty https://git.openstack.org/openstack/cloudkitty master enable_plugin cloudkitty https://git.openstack.org/openstack/cloudkitty master
enable_service ck-api, ck-proc enable_service ck-api, ck-proc
EOF EOF
3. Set CloudKitty collector to gnocchi:: 3. Set CloudKitty collector to gnocchi::
$ cd ${DEVSTACK_DIR} $ cd ${DEVSTACK_DIR}
cat >> local.conf << EOF cat >> local.conf << EOF
CLOUDKITTY_COLLECTOR=gnocchi CLOUDKITTY_COLLECTOR=gnocchi
EOF EOF
Run devstack as usual:: Run devstack as usual::
$ ./stack.sh $ ./stack.sh
See the documentation_ if you want more details about how to configure the See the documentation_ if you want more details about how to configure the
devstack plugin. devstack plugin.