Add ask server.

Later we'll add the public keys for the askbot folks.

This will be mostly managed outside of puppet for now.

Change-Id: I5de4a164932ce87c1d4c329c8e839e979c271fa1
Reviewed-on: https://review.openstack.org/22047
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
This commit is contained in:
James E. Blair 2013-02-15 09:52:41 -08:00 committed by Jenkins
parent 0a70f48641
commit 484a034118
2 changed files with 17 additions and 0 deletions

View File

@ -91,6 +91,12 @@ node 'community.openstack.org' {
}
}
node 'ask.openstack.org' {
class { 'openstack_project::ask':
sysadmins => hiera('sysadmins'),
}
}
node 'ci-puppetmaster.openstack.org' {
class { 'openstack_project::puppetmaster':
sysadmins => hiera('sysadmins'),

View File

@ -0,0 +1,11 @@
#
# Askbot server. Mostly managed outside of puppet.
#
class openstack_project::ask (
$sysadmins = []
) {
class { 'openstack_project::server':
iptables_public_tcp_ports => [80, 443],
sysadmins => $sysadmins
}
}