NOTE: The content in this module has been rendered obsolete as
of Puppet 5.5.0 and Puppet Server 5.3.0 which re-added native
support for the puppet facts upload
command and associated
API endpoint. The Puppet 5.x series reached End of Life
at the end of January 2021. This module has been archived
as it has reached the state of "finished software project".
This project re-implements the puppet facts upload
command and part of the
associated /puppet/v3/facts
endpoint that was removed along with
the inventory service in Puppet 4.0. These pieces of functionality were useful
for keeping facts updated outside of catalog compilation.
Re-adding the command and endpoint enables two key use cases:
-
The ability to run agents off of cached catalogs. Facts become stale in this configuration as they are only updated when a fresh catalog is compiled.
-
The ability to submit updated facts at the end of an agent run. This allows facts to reflect any changes made during catalog application and keeps fact data as fresh as possible for PuppetDB queries.
This module has been tested against the following versions of Puppet Server and Puppet Enterprise running on the following platforms:
- Versions: Puppet Server 5.1.z and 5.2.z, PE 2017.3.z and PE 2016.4.10 -- PE 2016.4.z
- Platforms: RedHat 6, 7; Ubuntu 14.04, 16.04; SLES 11, 12
The facts_upload
module is fairly sensitive to the Puppet Server and PE
version numbers as the code hooks into several internal APIs in both Puppet
Server and the puppet_enterprise
module. Installation of the Java plugins
also requires manipulation of Puppet Server's Java classpath for versions
older than Puppet Server 5 or PE 2017.3. The module likely will not work if
your Puppet Server version or platform is not on the list above.
Puppet Agent support is much less restrictive. The module should work with Puppet versions 4.y and 5.y.
The facts_upload
module currently provides one class: facts_upload::server
.
This class should be applied to all nodes running the puppetserver
or
pe-puppetserver
services and will configure the Puppet Server to mount a
/puppet/v3/facts
endpoint and configures auth.conf
to allow agents to
upload facts for just their own certnames.
The module also provides some Ruby code which is pluginsynced to agents:
lib/puppet/indirector/facts/rest.rb
lib/puppet/feature/facts_upload_builtin.rb
lib/puppet/face/facts/upload.rb
Agents may run puppet facts upload
once pluginsync has completed.
This module only provides a subset of the functionality that was removed in PUP-2560:
-
A
/puppet/v3/facts
API endpoint for Puppet Server that responds to PUT requests only. -
A
Puppet::Node::Facts::Rest
indirector terminus that sends requests from agents to the/puppet/v3/facts
API endpoint of theserver
the agent is configured to talk with. -
A
puppet facts upload
face that fetches facts from Facter and then uploads them to the/puppet/v3/facts
API endpoint of theserver
the agent is configured to talk with.
Notably, the following deprecated features have not been restored:
-
Functionality and REST API routes related to the Inventory Service.
-
Functionality and indirector terminii related to the
store_configs
subsystem.
See the output of rake -T
for development workflow tasks. More info will be
added to this section in a future release.