Merge "Create stackalytics.o.o under -infra"

This commit is contained in:
Jenkins
2015-11-05 18:27:06 +00:00
committed by Gerrit Code Review
6 changed files with 71 additions and 0 deletions

View File

@@ -152,6 +152,7 @@ class openstack_project::cacti (
'release.slave.openstack.org',
'review-dev.openstack.org',
'review.openstack.org',
'stackalytics.openstack.org',
'static.openstack.org',
'status.openstack.org',
'subunit-worker01.openstack.org',

View File

@@ -0,0 +1,17 @@
# == Class: openstack_project::stackalytics
#
class openstack_project::stackalytics (
$gerrit_ssh_user,
$stackalytics_ssh_private_key,
$vhost_name = $::fqdn,
) {
class { '::stackalytics':
gerrit_ssh_user => $gerrit_ssh_user,
stackalytics_ssh_private_key => $stackalytics_ssh_private_key,
vhost_name => $vhost_name,
}
realize (
User::Virtual::Localuser['pabelanger'],
)
}