diff --git a/horizon/Chart.yaml b/horizon/Chart.yaml index 33abb86d44..e78075e0a5 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.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: diff --git a/horizon/values.yaml b/horizon/values.yaml index 0134ce187d..a17c09d530 100644 --- a/horizon/values.yaml +++ b/horizon/values.yaml @@ -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 diff --git a/releasenotes/notes/horizon.yaml b/releasenotes/notes/horizon.yaml index d9002c908e..4a4fa8c3a1 100644 --- a/releasenotes/notes/horizon.yaml +++ b/releasenotes/notes/horizon.yaml @@ -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 ...