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 5301bb934a
commit 7525fc9a41
No known key found for this signature in database
GPG Key ID: 1F8C347A7DC77FD2
3 changed files with 7 additions and 1 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

@ -4,7 +4,7 @@ maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache-2.0'
description 'Installs/Configures the OpenStack Dashboard (Horizon)'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '17.0.0'
version '17.1.0'
%w(ubuntu redhat centos).each do |os|
supports os

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'] %>