Add openstack-health frontend to status.o.o

This commit adds the openstack-health frontend to status.o.o. It'll
CD the js from the openstack-health repo on each commit.

Depends-On: Ic47fbd817a293a257f7a9b164682fc96cce5321e

Change-Id: I079767e48c43fe190e683219b1fffee93afcce42
This commit is contained in:
Matthew Treinish 2015-10-16 19:15:11 -04:00
parent 6b88bbd29b
commit 359264f317
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
2 changed files with 16 additions and 1 deletions

View File

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

View File

@ -16,6 +16,7 @@ class openstack_project::status (
$graphite_render_url = 'http://graphite.openstack.org/render/', $graphite_render_url = 'http://graphite.openstack.org/render/',
$jenkins_gitfullname = 'OpenStack Jenkins', $jenkins_gitfullname = 'OpenStack Jenkins',
$jenkins_gitemail = 'jenkins@openstack.org', $jenkins_gitemail = 'jenkins@openstack.org',
$openstack_health_api_endpoint = 'http://health.openstack.org',
) { ) {
include openstack_project include openstack_project
@ -254,4 +255,13 @@ class openstack_project::status (
httproot => '/srv/static/bugdaystats', httproot => '/srv/static/bugdaystats',
configfile => '/var/lib/bugdaystats/config.js', 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
}
} }