Use openstack_project::server class where possible

As we move configuration for zuul worker nodes out of puppet and into
DIB elements, we should keep track of what is being managed by puppet
for long-lived servers and what no longer needs to be managed for single
use workers. The openstack_project::server class wraps the
openstack_server::template class which stores configuration that is
common to both types of machines. This patch updates the backup_server
and lists class to use the openstack_project::server class, updating
class parameters where they differ between o_p:server and o_p::template.
This way we can chop down the template class and move bits into the
server class until eventually we can entirely remove the
openstack_project::single_use_slave and openstack_project::template
classes.

Change-Id: Ief997d608a3a1632ec34da34ec46a237ead761f5
This commit is contained in:
Colleen Murphy 2017-03-25 14:55:29 +01:00
parent 2a63928351
commit 1bd9635d97
4 changed files with 12 additions and 11 deletions

View File

@ -258,6 +258,12 @@ node 'groups-dev.openstack.org' {
# Node-OS: trusty
node 'lists.openstack.org' {
class { 'openstack_project::server':
iptables_public_tcp_ports => [25, 80, 465],
manage_exim => false,
purge_apt_sources => false,
}
class { 'openstack_project::lists':
listadmins => hiera('listadmins', []),
listpassword => hiera('listpassword'),
@ -1288,6 +1294,11 @@ node 'pbx.openstack.org' {
# A backup machine. Don't run cron or puppet agent on it.
node /^ci-backup-.*\.openstack\.org$/ {
$group = "ci-backup"
class { 'openstack_project::server':
iptables_public_tcp_ports => [],
manage_exim => false,
purge_apt_sources => false,
}
include openstack_project::backup_server
}

View File

@ -1,9 +1,6 @@
# == Class: openstack_project::backup_server
#
class openstack_project::backup_server {
class { 'openstack_project::template':
iptables_public_tcp_ports => [],
}
package { 'bup':
ensure => present,
}

View File

@ -4,13 +4,6 @@ class openstack_project::lists(
$listadmins,
$listpassword = ''
) {
# Using openstack_project::template instead of openstack_project::server
# because the exim config on this machine is almost certainly
# going to be more complicated than normal.
class { 'openstack_project::template':
iptables_public_tcp_ports => [25, 80, 465],
}
$listdomain = 'lists.openstack.org'
class { 'exim':

View File

@ -22,7 +22,7 @@ class openstack_project::puppetdb (
class { 'puppetdb::database::postgresql':
require => [User['postgres'],
Class['openstack_project::template'],],
Class['openstack_project::server'],],
}
class { '::puppetdb::server':