From 5f9e974564cad477b8de03de7e5eb80c1273f4c4 Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Fri, 18 May 2018 16:50:26 -0600 Subject: [PATCH] Remove horizon ui plugins we don't support The trove horizon plugin actually causes problems for horizon by default but there's also a list of dashboards for services we don't officially support being deployed via TripleO. This change removes the cloudkitty, murano and trove ui packages from the horizon container. Change-Id: Ibc052208a8fa3e1866a7cc55dbd4bed0e04a7900 Closes-Bug: #1767520 --- container-images/tripleo_kolla_template_overrides.j2 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/container-images/tripleo_kolla_template_overrides.j2 b/container-images/tripleo_kolla_template_overrides.j2 index a50ede09a..c12b6cd2e 100644 --- a/container-images/tripleo_kolla_template_overrides.j2 +++ b/container-images/tripleo_kolla_template_overrides.j2 @@ -116,6 +116,14 @@ RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \ 'ruby-devel' ] %} +# Horizon dashboards we do not support +# See LP#1767520 +{% set horizon_packages_remove = [ + 'openstack-cloudkitty-ui', + 'openstack-murano-ui', + 'openstack-trove-ui' +] %} + # Required for nova migration {% set nova_compute_packages_append = ['openstack-nova-migration', 'openssh-server'] %} {% set nova_libvirt_packages_append = ['openstack-nova-migration'] %}