From 2787c16197512fd0fdc6ef39a05d0bf976f3c5dd Mon Sep 17 00:00:00 2001 From: root Date: Tue, 7 Sep 2021 15:57:45 +0200 Subject: [PATCH] Add default polices Change-Id: Ia9c054a246b258eff5b196e582aa2a743c95bbd2 --- horizon/Chart.yaml | 2 +- horizon/templates/bin/_horizon.sh.tpl | 2 +- releasenotes/notes/horizon.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/horizon/Chart.yaml b/horizon/Chart.yaml index 16ca34b174..0cc434b8a8 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.7 +version: 0.2.8 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/templates/bin/_horizon.sh.tpl b/horizon/templates/bin/_horizon.sh.tpl index f9bc77d158..712f57ae60 100644 --- a/horizon/templates/bin/_horizon.sh.tpl +++ b/horizon/templates/bin/_horizon.sh.tpl @@ -21,7 +21,7 @@ function start () { SITE_PACKAGES_ROOT=$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") rm -f ${SITE_PACKAGES_ROOT}/openstack_dashboard/local/local_settings.py ln -s /etc/openstack-dashboard/local_settings ${SITE_PACKAGES_ROOT}/openstack_dashboard/local/local_settings.py - + ln -s ${SITE_PACKAGES_ROOT}/openstack_dashboard/conf/default_policies /etc/openstack-dashboard/default_policies # wsgi/horizon-http needs open files here, including secret_key_store chown -R horizon ${SITE_PACKAGES_ROOT}/openstack_dashboard/local/ diff --git a/releasenotes/notes/horizon.yaml b/releasenotes/notes/horizon.yaml index 4b18f1cc14..6fc135e67c 100644 --- a/releasenotes/notes/horizon.yaml +++ b/releasenotes/notes/horizon.yaml @@ -17,4 +17,5 @@ horizon: - 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 + - 0.2.8 Add default polices ...