Install openstack-heat-ui when Heat and Horizon are deployed

Previously, the heat dashboard was part of Horizon, but this was changed
late in the Queens cycle, where a separate heat-dashboard repo
was created [1]. We need to install it if we want to keep the previous
functionality.

[1] - https://github.com/openstack/heat-dashboard

Change-Id: I253071e323c3e3a9cadabb8724cb686b6911322a
This commit is contained in:
Javier Pena 2018-03-13 14:59:10 +01:00
parent 110620b92b
commit 7bc636af48
1 changed files with 7 additions and 3 deletions

View File

@ -48,18 +48,22 @@ class packstack::horizon ()
ensure_packages(['openstack-magnum-ui'], {'ensure' => 'present'})
}
if hiera('CONFIG_IRONIC_INSTALL') == 'y' {
if hiera('CONFIG_IRONIC_INSTALL') == 'y' {
ensure_packages(['openstack-ironic-ui'], {'ensure' => 'present'})
}
if hiera('CONFIG_TROVE_INSTALL') == 'y' {
if hiera('CONFIG_TROVE_INSTALL') == 'y' {
ensure_packages(['openstack-trove-ui'], {'ensure' => 'present'})
}
if hiera('CONFIG_SAHARA_INSTALL') == 'y' {
if hiera('CONFIG_SAHARA_INSTALL') == 'y' {
ensure_packages(['openstack-sahara-ui'], {'ensure' => 'present'})
}
if hiera('CONFIG_HEAT_INSTALL') == 'y' {
ensure_packages(['openstack-heat-ui'], {'ensure' => 'present'})
}
include '::packstack::memcached'
$firewall_port = hiera('CONFIG_HORIZON_PORT')