From 6cd9a2339dd6e635cb78e9fd4e7250023b357635 Mon Sep 17 00:00:00 2001 From: okozachenko Date: Mon, 7 Dec 2020 21:50:45 +0200 Subject: [PATCH] Add openstack_enable_password_retrieve variable in horizon value Change-Id: Icc33228e06ecc71717aad39309f37986be3b46f2 --- horizon/Chart.yaml | 2 +- horizon/values.yaml | 3 ++- releasenotes/notes/horizon.yaml | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/horizon/Chart.yaml b/horizon/Chart.yaml index a3bd61f7e5..81a60b44ce 100644 --- a/horizon/Chart.yaml +++ b/horizon/Chart.yaml @@ -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: diff --git a/horizon/values.yaml b/horizon/values.yaml index c7b9b502f9..ddb9de5c06 100644 --- a/horizon/values.yaml +++ b/horizon/values.yaml @@ -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, diff --git a/releasenotes/notes/horizon.yaml b/releasenotes/notes/horizon.yaml index af9b12d3f0..ccc442a521 100644 --- a/releasenotes/notes/horizon.yaml +++ b/releasenotes/notes/horizon.yaml @@ -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 ...