Skip to content

Commit 73024ce

Browse files
(PE-41637) update node groups
1 parent 478698e commit 73024ce

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

manifests/setup/node_manager.pp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@
131131
'puppet_enterprise::profile::master' => {
132132
# lint:ignore:single_quote_string_with_variables
133133
'puppetdb_host' => ['${trusted[\'certname\']}', $internal_compiler_b_pool_address].filter |$_| { $_ },
134+
'puppetdb_port' => ['${trusted[\'certname\']}', $internal_compiler_b_pool_address].filter |$_| { $_ }.map |$_| { 8081 },
134135
# lint:endignore
135-
'puppetdb_port' => [8081],
136136
},
137137
},
138138
data => {
@@ -190,8 +190,8 @@
190190
'puppet_enterprise::profile::master' => {
191191
# lint:ignore:single_quote_string_with_variables
192192
'puppetdb_host' => ['${trusted[\'certname\']}', $internal_compiler_a_pool_address].filter |$_| { $_ },
193+
'puppetdb_port' => ['${trusted[\'certname\']}', $internal_compiler_a_pool_address].filter |$_| { $_ }.map |$_| { 8081 },
193194
# lint:endignore
194-
'puppetdb_port' => [8081],
195195
},
196196
},
197197
data => {
@@ -209,7 +209,7 @@
209209
classes => {
210210
'puppet_enterprise::profile::master' => {
211211
'puppetdb_host' => [$internal_compiler_a_pool_address, $internal_compiler_b_pool_address].filter |$_| { $_ },
212-
'puppetdb_port' => [8081],
212+
'puppetdb_port' => [$internal_compiler_a_pool_address, $internal_compiler_b_pool_address].filter |$_| { $_ }.map |$_| { 8081 },
213213
},
214214
},
215215
}
@@ -227,7 +227,7 @@
227227
classes => {
228228
'puppet_enterprise::profile::master' => {
229229
'puppetdb_host' => [$internal_compiler_b_pool_address, $internal_compiler_a_pool_address].filter |$_| { $_ },
230-
'puppetdb_port' => [8081],
230+
'puppetdb_port' => [$internal_compiler_b_pool_address, $internal_compiler_a_pool_address].filter |$_| { $_ }.map |$_| { 8081 },
231231
},
232232
},
233233
data => {
@@ -251,7 +251,7 @@
251251
classes => {
252252
'puppet_enterprise::profile::master' => {
253253
'puppetdb_host' => [$internal_compiler_a_pool_address, $internal_compiler_a_pool_address].filter |$_| { $_ },
254-
'puppetdb_port' => [8081],
254+
'puppetdb_port' => [$internal_compiler_a_pool_address, $internal_compiler_a_pool_address].filter |$_| { $_ }.map |$_| { 8081 },
255255
},
256256
},
257257
data => {

0 commit comments

Comments
 (0)