Docs: PE 2.6 » Puppet » Overview


An Overview of Puppet

Where Configurations Come From

Configurations for nodes are compiled from manifests, which are documents written in Puppet’s custom language. Manifests declare resources, each of which represents the desired state of some thing (software package, service, user account, file…) on a system. Resources are grouped into classes, and classes are grouped into modules. Modules are structured collections of manifest files where each file contains a single class (or defined type).

How Configurations are Assigned to Nodes

In Puppet Enterprise, the console controls which classes are assigned to nodes. You can assign classes to nodes individually, or you can collect nodes into groups and assign classes to large numbers of nodes at a time. You can also declare variables (“parameters”) that can be read by any of the classes assigned to the node.

When an agent node requests its catalog from the master, the master asks the console which classes and parameters to use, then compiles those classes into the node’s catalog.

What Nodes Do With Catalogs

The heart of Puppet is the resource abstraction layer (RAL), which lets the puppet agent turn abstract resource declarations into concrete actions specific to the local system. Once the agent has its catalog of resource declarations, it uses the system’s own tools to bring those resources into their desired state.

When New Configurations Take Effect

By default, puppet agent will pull a catalog and run it every 30 minutes (counted from when the agent service started, rather than on the half-hour). You can change this by setting the runinterval option in an agent’s /etc/puppetlabs/puppet/puppet.conf file to a new value. (The runinterval is measured in seconds.)

If you need a node or group of nodes to retrieve a new configuration now, use the “Control Puppet” tab of the console’s live management page.

windows-only NOTE: Live management and MCollective are not yet supported on Windows nodes.


↑ Back to top