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
(cherry picked from commit 5f9e974564)
This commit is contained in:
Alex Schultz 2018-05-18 16:50:26 -06:00
parent a42f1e11e4
commit 2088f61223
1 changed files with 8 additions and 0 deletions

View File

@ -118,6 +118,14 @@ RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
{% set mariadb_packages_append = ['mariadb-server', 'mariadb-server-galera', 'xinetd'] %}
{% set sensu_client_packages_append = ['mariadb-server', 'mariadb-server-galera'] %}
# 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'] %}