Add SHOW_OPENRC_FILE value in horizon

Change-Id: I633c89346f3b717b1f984491ff1c3abc34e0b997
This commit is contained in:
okozachenko 2022-04-15 21:02:07 +10:00
parent 1473bfe29c
commit ff119481e8
3 changed files with 5 additions and 2 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Horizon
name: horizon
version: 0.2.19
version: 0.2.20
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
sources:

View File

@ -200,6 +200,7 @@ conf:
keystone_multidomain_support: "True"
keystone_default_domain: Default
disable_password_reveal: "True"
show_openrc_file: "True"
csrf_cookie_secure: "False"
csrf_cookie_httponly: "False"
enforce_password_check: "True"
@ -486,7 +487,8 @@ conf:
# Setting this to True, will add a new "Retrieve Password" action on instance,
# allowing Admin session password retrieval/decryption.
OPENSTACK_ENABLE_PASSWORD_RETRIEVE = {{ .Values.conf.horizon.local_settings.config.openstack_enable_password_retrieve }}
# Controls whether the keystone openrc file is accessible from the user menu and the api access panel.
SHOW_OPENRC_FILE = {{ .Values.conf.horizon.local_settings.config.show_openrc_file }}
# The Launch Instance user experience has been significantly enhanced.
# You can choose whether to enable the new launch instance experience,
# the legacy experience, or both. The legacy experience will be removed

View File

@ -29,4 +29,5 @@ horizon:
- 0.2.17 Add custom logo
- 0.2.18 Enable taint toleration for Openstack services
- 0.2.19 Remove unsupported value overrides
- 0.2.20 Add SHOW_OPENRC_FILE value
...