Puppet Class: peadm::setup::node_manager
- Defined in:
- manifests/setup/node_manager.pp
Summary
Configures PEAdm's required node groupsOverview
This class is not intended to be continously enforced on PE primaries. Rather, it describes state to enforce as a boostrap action, preparing the Puppet Enterprise console with a sane default environment configuration.
This class will be applied during primary bootstrap using e.g.
puppet apply \
--exec 'class { "peadm::setup::node_manager":
environments => ["production", "staging", "development"],
}'
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'manifests/setup/node_manager.pp', line 27
class peadm::setup::node_manager (
String[1] $primary_host,
Optional[String[1]] $server_a_host = undef,
Optional[String[1]] $server_b_host = undef,
String[1] $postgresql_a_host = $server_a_host,
Optional[String[1]] $postgresql_b_host = $server_b_host,
Optional[String[1]] $compiler_pool_address = undef,
Optional[String[1]] $internal_compiler_a_pool_address = $server_a_host,
Optional[String[1]] $internal_compiler_b_pool_address = $server_b_host,
) {
# "Not-configured" placeholder string. This will be used in places where we
# cannot set an explicit null, and need to supply some kind of value.
$notconf = 'not-configured'
# Preserve existing user data and classes values. We only need to make sure
# the values we care about are present; we don't need to remove anything
# else.
Node_group {
purge_behavior => none,
}
##################################################
# PE INFRASTRUCTURE GROUPS
##################################################
# We modify this group's rule such that all PE infrastructure nodes will be
# members.
node_group { 'PE Infrastructure Agent':
rule => ['or',
['~', ['trusted', 'extensions', peadm::oid('peadm_role')], '^puppet/'],
['~', ['fact', 'pe_server_version'], '.+']
],
}
# We modify PE Master to add, as data, the compiler_pool_address only. Some
# users may set this value via Hiera, so we don't want to always require it
# being set in the console.
$compiler_pool_address_data = $compiler_pool_address ? {
undef => undef,
default => { 'pe_repo' => { 'compile_master_pool_address' => $compiler_pool_address } },
}
# We do not call this node group PE Primary because it is modifying a
# built-in group, rather than creating a new one. And, as of PE 2021.1, the
# name is still PE Master.
node_group { 'PE Master':
parent => 'PE Infrastructure',
data => $compiler_pool_address_data,
variables => { 'pe_master' => true },
}
# This group should pin the primary, and also map to any pe-postgresql nodes
# which are part of the architecture.
node_group { 'PE Database':
rule => ['or',
['and', ['=', ['trusted', 'extensions', peadm::oid('peadm_role')], 'puppet/puppetdb-database']],
['=', 'name', $primary_host],
],
}
# Create data-only groups to store PuppetDB PostgreSQL database configuration
# information specific to the primary and primary replica nodes.
node_group { 'PE Primary A':
ensure => present,
parent => 'PE Infrastructure',
rule => ['and',
['=', ['trusted', 'extensions', peadm::oid('peadm_role')], 'puppet/server'],
['=', ['trusted', 'extensions', peadm::oid('peadm_availability_group')], 'A'],
],
data => {
'puppet_enterprise::profile::primary_master_replica' => {
'database_host_puppetdb' => pick($postgresql_a_host, $notconf),
},
'puppet_enterprise::profile::puppetdb' => {
'database_host' => pick($postgresql_a_host, $notconf),
},
},
}
# Configure the A pool for compilers. There are up to two pools for DR, each
# having an affinity for one "availability zone" or the other.
node_group { 'PE Compiler Group A':
ensure => 'present',
parent => 'PE Compiler',
rule => ['and',
['=', ['trusted', 'extensions', 'pp_auth_role'], 'pe_compiler'],
['=', ['trusted', 'extensions', peadm::oid('peadm_availability_group')], 'A'],
],
classes => {
'puppet_enterprise::profile::puppetdb' => {
'database_host' => pick($postgresql_a_host, $notconf),
},
'puppet_enterprise::profile::master' => {
# lint:ignore:single_quote_string_with_variables
'puppetdb_host' => ['${trusted[\'certname\']}', $internal_compiler_b_pool_address].filter |$_| { $_ },
# lint:endignore
'puppetdb_port' => [8081],
},
},
data => {
# Workaround for GH-118
'puppet_enterprise::profile::master::puppetdb' => {
'ha_enabled_replicas' => [],
},
},
}
# Always create the replica and B groups, even if a replica primary and
# database host are not supplied. This consistency enables the
# peadm::get_cluster_roles task to reliably return the currently configured
# PEAdm roles.
# We need to ensure this group provides the peadm_replica variable.
node_group { 'PE HA Replica':
ensure => 'present',
parent => 'PE Infrastructure',
classes => {
'puppet_enterprise::profile::primary_master_replica' => {},
},
variables => { 'peadm_replica' => true },
}
node_group { 'PE Primary B':
ensure => present,
parent => 'PE Infrastructure',
rule => ['and',
['=', ['trusted', 'extensions', peadm::oid('peadm_role')], 'puppet/server'],
['=', ['trusted', 'extensions', peadm::oid('peadm_availability_group')], 'B'],
],
data => {
'puppet_enterprise::profile::primary_master_replica' => {
'database_host_puppetdb' => pick($postgresql_b_host, $notconf),
},
'puppet_enterprise::profile::puppetdb' => {
'database_host' => pick($postgresql_b_host, $notconf),
},
},
}
node_group { 'PE Compiler Group B':
ensure => 'present',
parent => 'PE Compiler',
rule => ['and',
['=', ['trusted', 'extensions', 'pp_auth_role'], 'pe_compiler'],
['=', ['trusted', 'extensions', peadm::oid('peadm_availability_group')], 'B'],
],
classes => {
'puppet_enterprise::profile::puppetdb' => {
'database_host' => pick($postgresql_b_host, $notconf),
},
'puppet_enterprise::profile::master' => {
# lint:ignore:single_quote_string_with_variables
'puppetdb_host' => ['${trusted[\'certname\']}', $internal_compiler_a_pool_address].filter |$_| { $_ },
# lint:endignore
'puppetdb_port' => [8081],
},
},
data => {
# Workaround for GH-118
'puppet_enterprise::profile::master::puppetdb' => {
'ha_enabled_replicas' => [],
},
},
}
}
|