Making Resource panel visible where appropriate

The resource panel is being hidden by a missing default rule in
the ceilometer policy file. Adding a required keystone rule to the
policy check, identity:list_projects.

The greater issue of policy being OR rather than AND will be
addressed in a separate issue.

Change-Id: I1a84fb66bab98bfdae2b9ea44dad76a05a09930d
Closes-Bug: #1426411
This commit is contained in:
David Lyle 2015-02-27 08:11:56 -07:00
parent 56c6677d61
commit 4c1d4a17e2

View File

@ -20,7 +20,8 @@ class Metering(horizon.Panel):
name = _("Resource Usage")
slug = 'metering'
permissions = ('openstack.services.metering', )
policy_rules = (('telemetry', 'telemetry:compute_statistics'),
policy_rules = (('identity', 'identity:list_projects'),
('telemetry', 'telemetry:compute_statistics'),
('telemetry', 'telemetry:get_meter'),)