Ceilometer client Kilo region selection
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
python-ceilometerclient |
New
|
Undecided
|
Unassigned |
Bug Description
In my multiregion infrastructure with KILO version, when i use ceilometer client (1.0.13) i noticed that it works with only the first region of the keystone catalog and ignore OS_REGION_NAME parameter.
example:
export OS_REGION_
ceilometer --debug --os-region-name avalon1 meter-list
DEBUG (v2) Making authentication request to https:/
DEBUG (client) REQ: curl -g -i -X 'GET' 'https:/
It ignore my region definition and use the first region of my catalog.
I found the bug in /usr/lib/
class AuthPlugin(
opt_names = ['tenant_id', 'region_name', 'auth_token',
def __init__(self, auth_system=None, **kwargs):
def _do_authenticat
token = self.opts.
endpoint = self.opts.
if not (token and endpoint):
}
'region_name' argument of ks_kwargs is not define. When i added client work properly.
Anyone can confirm this behavior?
Is it fixed in latest version?