disable the openrc v2 download panel by default

Change-Id: I568d779fb05cb7b0dd22cc1757f86ecda26b281f
This commit is contained in:
Jan Klare 2018-11-01 14:04:02 +00:00
parent d4779ba7cd
commit 4838ae06c7
No known key found for this signature in database
GPG Key ID: 1F8C347A7DC77FD2
2 changed files with 6 additions and 0 deletions

View File

@ -163,6 +163,9 @@ default['openstack']['dashboard']['plugins'] = nil
default['openstack']['dashboard']['file_upload_temp_dir'] = nil
# disable the v2 openrc download panel by default since v2 has been deprecated for a while
default['openstack']['dashboard']['show_keystone_v2_rc'] = 'False'
default['openstack']['dashboard']['error_log'] = 'openstack-dashboard-error.log'
default['openstack']['dashboard']['access_log'] = 'openstack-dashboard-access.log'

View File

@ -649,3 +649,6 @@ mod.INSTALLED_APPS += ('<%= p %>', )
<% if node["openstack"]["dashboard"]["file_upload_temp_dir"] %>
FILE_UPLOAD_TEMP_DIR = "<%= node["openstack"]["dashboard"]["file_upload_temp_dir"] %>"
<% end %>
# Controls whether the keystone v2 openrc file is accessable from the user menu and the api access panel.
SHOW_KEYSTONE_V2_RC = <%= node['openstack']['dashboard']['show_keystone_v2_rc'] %>