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

This commit is contained in:
Zuul 2018-08-21 10:52:17 +00:00 committed by Gerrit Code Review
commit 6832aec4e2
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')