diff --git a/modules/openstack_project/files/status/index.html b/modules/openstack_project/files/status/index.html
index 347a87159e..e1dd15b890 100644
--- a/modules/openstack_project/files/status/index.html
+++ b/modules/openstack_project/files/status/index.html
@@ -93,7 +93,12 @@
stats.
-
+
+
+
+ A test results dashboard.
+
+
diff --git a/modules/openstack_project/manifests/status.pp b/modules/openstack_project/manifests/status.pp
index 74c24c2fcb..873e1def13 100644
--- a/modules/openstack_project/manifests/status.pp
+++ b/modules/openstack_project/manifests/status.pp
@@ -16,6 +16,7 @@ class openstack_project::status (
$graphite_render_url = 'http://graphite.openstack.org/render/',
$jenkins_gitfullname = 'OpenStack Jenkins',
$jenkins_gitemail = 'jenkins@openstack.org',
+ $openstack_health_api_endpoint = 'http://health.openstack.org',
) {
include openstack_project
@@ -254,4 +255,13 @@ class openstack_project::status (
httproot => '/srv/static/bugdaystats',
configfile => '/var/lib/bugdaystats/config.js',
}
+ ###########################################################
+ # Status - openstack-health
+
+ include 'openstack_health'
+
+ openstack_health::site { 'openstack-health':
+ httproot => '/srv/static/openstack-health',
+ api_endpoint => $openstack_health_api_endpoint
+ }
}