Merge "Add variable override for OPENSTACK_KEYSTONE_ADMIN_ROLES"
This commit is contained in:
commit
4cb61d12c9
@ -252,3 +252,6 @@ horizon_role_project_group: horizon_all
|
||||
|
||||
# Set arbitrary horizon configuration options
|
||||
horizon_config_overrides: {}
|
||||
|
||||
horizon_keystone_admin_roles:
|
||||
- admin
|
||||
|
@ -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.
|
@ -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 %}
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user