Project

General

Profile

Actions

Bug #20378

closed

foreman is not able to identify agent environment in puppet 5 and sets it to the default

Added by Elisiano Petrini almost 7 years ago. Updated almost 6 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Facts
Target version:
Fixed in Releases:
Found in Releases:

Description

I was having the following issue:
- the node had the correct environment set in puppet.conf
- the node was in the right environment in foreman
- I ran puppet on the node and in foreman it was moved to the default environment

I've noticed that in my setup the /opt/puppetlabs/server/data/puppetserver/yaml/node/$fqdn.yaml is not getting generated (yaml/facts/$fqdn.yaml is there).
I don't know why it doesn't get generated but it seems that upgrading to puppet 5 that file stopped being written.

As pointed out by gwmngilfen, the above file is used in the classifier script in case the environment is not amongst the facts ( https://github.com/theforeman/puppet-foreman/blob/master/files/external_node_v2.rb#L119-L130 )

Currently the variable `name` which defines the environment is follows ( https://github.com/theforeman/foreman/blob/develop/app/services/puppet_fact_parser.rb#L64 )

    name = facts[:environment] || Setting[:default_puppet_environment]

I have disabled "ENC environment" setting (because I want the agent to be able to specify a different env for testing features). So I'm not sure how the behavior should be in case the setting is enabled but a simple workaround for this would be

   name = facts[:environment] || facts[:agent_specified_environment] || Setting[:default_puppet_environment]

I tested the above on 1.15.2 and it works as expected.


Related issues 1 (0 open1 closed)

Related to Foreman - Tracker #15096: Puppet 5 supportClosed05/19/2016

Actions
Actions

Also available in: Atom PDF