Puppet Class: peadm::setup::node_manager
- Defined in:
- manifests/setup/node_manager.pp
Overview
This profile 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"],
}'
24 25 26 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 195 196 197 198 199 200 201 |
# File 'manifests/setup/node_manager.pp', line 24
class peadm::setup::node_manager (
# Standard
String[1] $primary_host,
# High Availability
Optional[String[1]] $replica_host = undef,
# Common
Optional[String[1]] $compiler_pool_address = undef,
Optional[String[1]] $internal_compiler_a_pool_address = $primary_host,
Optional[String[1]] $internal_compiler_b_pool_address = $replica_host,
# For the next two parameters, the default values are appropriate when
# deploying Standard or Large architectures. These values only need to be
# specified differently when deploying an Extra Large architecture.
# Specify when using Extra Large
String[1] $primary_postgresql_host = $primary_host,
# Specify when using Extra Large AND High Availability
Optional[String[1]] $replica_postgresql_host = $replica_host,
) {
# 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.
# Because the group does not have any data by default this does not impact
# out-of-box configuration of the group.
$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 },
rule => ['or',
['and', ['=', ['trusted', 'extensions', 'pp_auth_role'], 'pe_compiler']],
['=', 'name', $primary_host],
],
}
# This group should pin master, puppetdb_database, and puppetdb_database_replica,
# but only if provided (and not just the default).
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' => $primary_postgresql_host,
},
'puppet_enterprise::profile::puppetdb' => {
'database_host' => $primary_postgresql_host,
},
},
}
# 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' => $primary_postgresql_host,
},
'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' => [ ],
},
},
}
# Create the replica and B groups if a replica primary and database host are
# supplied
if $replica_host {
# We need to ensure this group provides the peadm_replica variable.
node_group { 'PE DR 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' => $replica_postgresql_host,
},
'puppet_enterprise::profile::puppetdb' => {
'database_host' => $replica_postgresql_host,
},
},
}
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' => $replica_postgresql_host,
},
'puppet_enterprise::profile::master' => {
# lint:ignore:single_quote_string_with_variables
'puppetdb_host' => ['${trusted[\'certname\']}', $internal_compiler_a_pool_address],
# lint:endignore
'puppetdb_port' => [8081],
}
},
data => {
# Workaround for GH-118
'puppet_enterprise::profile::master::puppetdb' => {
'ha_enabled_replicas' => [ ],
},
},
}
}
}
|