Merge "Add variable override for OPENSTACK_KEYSTONE_ADMIN_ROLES"

This commit is contained in:
Jenkins 2016-08-19 20:00:18 +00:00 committed by Gerrit Code Review
commit 4cb61d12c9
3 changed files with 14 additions and 0 deletions

View File

@ -252,3 +252,6 @@ horizon_role_project_group: horizon_all
# Set arbitrary horizon configuration options
horizon_config_overrides: {}
horizon_keystone_admin_roles:
- admin

View File

@ -0,0 +1,5 @@
---
features:
- The ``horizon_keystone_admin_roles`` variable is added to support the
``OPENSTACK_KEYSTONE_ADMIN_ROLES`` list in the horizon_local_settings.py
file.

View File

@ -738,3 +738,9 @@ DEFAULT_THEME = '{{ horizon_default_theme }}'
# Set arbitrary horizon configuration options
HORIZON_CONFIG.update({{ horizon_config_overrides }})
OPENSTACK_KEYSTONE_ADMIN_ROLES = [
{% for item in horizon_keystone_admin_roles %}
'{{ item }}',
{% endfor %}
]