Merge "Add openstack-health frontend to status.o.o"

This commit is contained in:
Jenkins 2015-10-21 20:07:05 +00:00 committed by Gerrit Code Review
commit 61e5513770
2 changed files with 16 additions and 1 deletions

View File

@ -93,7 +93,12 @@
stats.
</p>
</div>
<div class="blurb">
<h2 class="subhead"><a href="/openstack-health/">OpenStack-Health</a></h2>
<p>
A test results dashboard.
</p>
</div>
</div>
<script type="text/javascript">footer();</script>

View File

@ -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
}
}