From 764affd1ebbcd6db2f7532e34e25d1e9b2607c5f Mon Sep 17 00:00:00 2001 From: root Date: Thu, 19 Aug 2021 16:17:42 +0200 Subject: [PATCH] Fix enable password retrieve config value Now OPENSTACK_ENABLE_PASSWORD_RETRIEVE value is string so always get true regardless of the config value. Change-Id: I0fb1203f22ddd6e707eeb80f72a3685c3b9c350f --- horizon/Chart.yaml | 2 +- horizon/values.yaml | 2 +- releasenotes/notes/horizon.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/horizon/Chart.yaml b/horizon/Chart.yaml index 4712548bca..16ca34b174 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.6 +version: 0.2.7 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 da824060cc..c715419259 100644 --- a/horizon/values.yaml +++ b/horizon/values.yaml @@ -469,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 = '{{ .Values.conf.horizon.local_settings.config.openstack_enable_password_retrieve }}' + 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 253347ac2e..4b18f1cc14 100644 --- a/releasenotes/notes/horizon.yaml +++ b/releasenotes/notes/horizon.yaml @@ -16,4 +16,5 @@ horizon: - 0.2.4 Fix OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT value - 0.2.5 Add Ussuri release support - 0.2.6 Add Victoria and Wallaby releases support + - 0.2.7 Fix OPENSTACK_ENABLE_PASSWORD_RETRIEVE value ...