Enabled ceilometer using plugin model

Devstack plugin, such as ceilometer, should not be enabled in
settings, since the path of the plugin is not available at that time.
Therefore, users have to manually enable it in local.conf, if they
run devstack locally.

Closes-Bug: #1497706
Change-Id: Idca09449ab5a3a5276282ffbcbb0aa73f35c34ae
This commit is contained in:
Hongbin Lu 2015-10-05 10:57:18 -04:00
parent f2354c3a42
commit a8ed34ac7d
2 changed files with 7 additions and 9 deletions

View File

@ -31,15 +31,6 @@ enable_service h-api
enable_service h-api-cfn
enable_service h-api-cw
# Enable Ceilometer services
enable_service ceilometer-acompute
enable_service ceilometer-acentral
enable_service ceilometer-anotification
enable_service ceilometer-collector
enable_service ceilometer-api
enable_service ceilometer-alarm-notifier
enable_service ceilometer-alarm-evaluator
# Enable Magnum services
enable_service m-api
enable_service m-cond

View File

@ -121,6 +121,13 @@ Kilo, and heat is enabled by the magnum plugin)::
Note: Update PUBLIC_INTERFACE as appropriate for your system.
Optionally, you can enable ceilometer in devstack. If ceilometer is enabled,
magnum will periodically send metrics to ceilometer::
cat >> /opt/stack/devstack/local.conf << END
enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer
END
More devstack configuration information can be found at
http://docs.openstack.org/developer/devstack/configuration.html