oslo config clients_xxx enabled for all supported services

It enables the clients_xxx option for all supported
services in heat.

Change-Id: I58fdf4c01a9dbb4496790e4b7270e6cda3d2f40d
This commit is contained in:
Kanagaraj Manickam 2016-03-24 14:05:29 +05:30
parent dfff614381
commit ec0d3210ba
1 changed files with 5 additions and 3 deletions

View File

@ -367,9 +367,11 @@ def list_opts():
yield profiler.list_opts()[0]
yield 'clients', default_clients_opts
for client in ('nova', 'swift', 'neutron', 'cinder',
'ceilometer', 'keystone', 'heat', 'glance', 'trove',
'sahara'):
for client in ('barbican', 'ceilometer', 'cinder', 'designate', 'glance',
'heat', 'keystone', 'magnum', 'manila', 'mistral',
'neutron', 'nova', 'sahara', 'senlin', 'swift', 'trove',
'zaqar'
):
client_specific_group = 'clients_' + client
yield client_specific_group, clients_opts