2f523826af
Java loves ram Co-Authored-By: Bryan Jen <bryan.jen@gmail.com> Change-Id: I45bb391e7d7222780c2d579a5b5a33885eb45333
52 lines
1.2 KiB
Puppet
52 lines
1.2 KiB
Puppet
# == Class: openstack_project::puppetdb
|
|
#
|
|
class openstack_project::puppetdb (
|
|
$sysadmins = [],
|
|
$puppetboard = true,
|
|
) {
|
|
|
|
# The puppetlabs postgres module does not manage the postgres user
|
|
# and group for us. Create them here to ensure concat can create
|
|
# dirs and files owned by this user and group.
|
|
user { 'postgres':
|
|
ensure => present,
|
|
gid => 'postgres',
|
|
system => true,
|
|
require => Group['postgres'],
|
|
}
|
|
|
|
group { 'postgres':
|
|
ensure => present,
|
|
system => true,
|
|
}
|
|
|
|
if $puppetboard {
|
|
$open_ports = [8081, 80]
|
|
} else {
|
|
$open_ports = [8081]
|
|
}
|
|
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => $open_ports,
|
|
sysadmins => $sysadmins,
|
|
}
|
|
|
|
class { '::puppetdb::database::postgresql':
|
|
require => [User['postgres'],
|
|
Class['openstack_project::template'],],
|
|
}
|
|
|
|
class { '::puppetdb::server':
|
|
database_host => 'localhost',
|
|
ssl_listen_address => '0.0.0.0', # works for ipv6 too
|
|
java_args => { '-Xmx' => '512m', '-Xms' => '256m' },
|
|
require => [ User['postgres'],
|
|
Class['puppetdb::database::postgresql'],],
|
|
}
|
|
|
|
if $puppetboard {
|
|
class { 'openstack_project::puppetboard': }
|
|
}
|
|
|
|
}
|