Skip to content

Commit 5e9536c

Browse files
authored
Merge pull request #8770 from GabrielNagy/PUP-11265/push-environment-context
(PUP-11265) Push last used environment and loaders onto the context
2 parents 462ff63 + 90b6393 commit 5e9536c

File tree

2 files changed

+29
-16
lines changed

2 files changed

+29
-16
lines changed

lib/puppet/configurer.rb

+15-16
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,8 @@ def run_internal(options)
305305
if last_server_specified_environment
306306
@environment = last_server_specified_environment
307307
report.environment = last_server_specified_environment
308+
309+
push_current_environment_and_loaders
308310
else
309311
Puppet.debug(_("Could not find a usable environment in the lastrunfile. Either the file does not exist, does not have the required keys, or the values of 'initial_environment' and 'converged_environment' are identical."))
310312
end
@@ -315,14 +317,7 @@ def run_internal(options)
315317
# This is to maintain compatibility with anyone using this class
316318
# aside from agent, apply, device.
317319
unless Puppet.lookup(:loaders) { nil }
318-
new_env = Puppet::Node::Environment.remote(@environment)
319-
Puppet.push_context(
320-
{
321-
current_environment: new_env,
322-
loaders: Puppet::Pops::Loaders.new(new_env, true)
323-
},
324-
"Local node environment #{@environment} for configurer transaction"
325-
)
320+
push_current_environment_and_loaders
326321
end
327322

328323
temp_value = options[:pluginsync]
@@ -358,14 +353,7 @@ def run_internal(options)
358353
@environment = catalog.environment
359354
report.environment = @environment
360355

361-
new_env = Puppet::Node::Environment.remote(@environment)
362-
Puppet.push_context(
363-
{
364-
:current_environment => new_env,
365-
:loaders => Puppet::Pops::Loaders.new(new_env, true)
366-
},
367-
"Local node environment #{@environment} for configurer transaction"
368-
)
356+
push_current_environment_and_loaders
369357

370358
query_options, facts = get_facts(options)
371359
query_options[:configured_environment] = configured_environment
@@ -561,6 +549,17 @@ def execute_from_setting(setting)
561549
end
562550
end
563551

552+
def push_current_environment_and_loaders
553+
new_env = Puppet::Node::Environment.remote(@environment)
554+
Puppet.push_context(
555+
{
556+
:current_environment => new_env,
557+
:loaders => Puppet::Pops::Loaders.new(new_env, true)
558+
},
559+
"Local node environment #{@environment} for configurer transaction"
560+
)
561+
end
562+
564563
def retrieve_catalog_from_cache(query_options)
565564
result = nil
566565
@duration = thinmark do

spec/unit/configurer_spec.rb

+14
Original file line numberDiff line numberDiff line change
@@ -1159,6 +1159,20 @@ def expects_neither_new_or_cached_catalog
11591159
expect(configurer.environment).to eq(last_server_specified_environment)
11601160
end
11611161

1162+
it "pushes the converged environment found in lastrunfile over the existing context" do
1163+
initial_env = Puppet::Node::Environment.remote('production')
1164+
Puppet.push_context(
1165+
current_environment: initial_env,
1166+
loaders: Puppet::Pops::Loaders.new(initial_env, true))
1167+
1168+
expect(Puppet).to receive(:push_context).with(
1169+
hash_including(:current_environment, :loaders),
1170+
"Local node environment #{last_server_specified_environment} for configurer transaction"
1171+
).once.and_call_original
1172+
1173+
configurer.run
1174+
end
1175+
11621176
it "uses environment from Puppet[:environment] if strict_environment_mode is set" do
11631177
Puppet[:strict_environment_mode] = true
11641178
configurer.run

0 commit comments

Comments
 (0)