From ec0d3210ba43e3d2a838db9b4b9facfa11edbce5 Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam Date: Thu, 24 Mar 2016 14:05:29 +0530 Subject: [PATCH] oslo config clients_xxx enabled for all supported services It enables the clients_xxx option for all supported services in heat. Change-Id: I58fdf4c01a9dbb4496790e4b7270e6cda3d2f40d --- heat/common/config.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/heat/common/config.py b/heat/common/config.py index 342adac4e6..9996bb7f0c 100644 --- a/heat/common/config.py +++ b/heat/common/config.py @@ -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