Test the new horizon::dashboards::heat class
Depends-on: https://review.opendev.org/775322 Change-Id: Ie4989a772a308bfb44ad61a04d135d0c8b217163
This commit is contained in:
parent
1ed059127e
commit
7538c249d9
@ -96,7 +96,9 @@ include openstack_integration::nova
|
||||
if $trove_enabled {
|
||||
include openstack_integration::trove
|
||||
}
|
||||
include openstack_integration::horizon
|
||||
class { 'openstack_integration::horizon':
|
||||
heat_enabled => true
|
||||
}
|
||||
include openstack_integration::heat
|
||||
class { 'openstack_integration::sahara':
|
||||
integration_enable => $sahara_integration_enable,
|
||||
|
@ -1,4 +1,12 @@
|
||||
class openstack_integration::horizon {
|
||||
# Configure the Horizon service
|
||||
#
|
||||
# [*heat_enabled*]
|
||||
# (optional) Flag to enable heat dashboard
|
||||
# Defaults to false.
|
||||
#
|
||||
class openstack_integration::horizon (
|
||||
$heat_enabled = false,
|
||||
) {
|
||||
|
||||
include openstack_integration::config
|
||||
include openstack_integration::params
|
||||
@ -44,5 +52,7 @@ class openstack_integration::horizon {
|
||||
compress_offline => false,
|
||||
}
|
||||
|
||||
horizon::dashboard { 'heat': }
|
||||
if $heat_enabled {
|
||||
class { 'horizon::dashboards::heat': }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user