Add openstack_enable_password_retrieve variable

in horizon value

Change-Id: Icc33228e06ecc71717aad39309f37986be3b46f2
This commit is contained in:
okozachenko 2020-12-07 21:50:45 +02:00
parent 87011eb8d7
commit 6cd9a2339d
3 changed files with 4 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.2
version: 0.2.3
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

@ -214,6 +214,7 @@ conf:
enable_firewall: "True"
enable_vpn: "True"
enable_fip_topology_check: "True"
openstack_enable_password_retrieve: "False"
auth:
sso:
enabled: False
@ -468,7 +469,7 @@ conf:
# Setting this to True, will add a new "Retrieve Password" action on instance,
# allowing Admin session password retrieval/decryption.
#OPENSTACK_ENABLE_PASSWORD_RETRIEVE = False
OPENSTACK_ENABLE_PASSWORD_RETRIEVE = '{{ .Values.conf.horizon.local_settings.config.openstack_enable_password_retrieve }}'
# The Launch Instance user experience has been significantly enhanced.
# You can choose whether to enable the new launch instance experience,

View File

@ -12,4 +12,5 @@ horizon:
- 0.2.0 Remove support for releases before T
- 0.2.1 Make python script PEP8 compliant
- 0.2.2 Use policies in yaml format
- 0.2.3 Add openstack_enable_password_retrieve variable in value
...