Project

General

Profile

Actions

External Nodes » History » Revision 12

« Previous | Revision 12/30 (diff) | Next »
Ohad Levy, 06/02/2010 04:50 PM


Foreman can act as a classifier to Puppet through the external nodes interface.

You can now configure your hosts via a web interface, avoiding typing host specific information in your manifest.

Import your environment and classes setup

First of all, you probably want to let Foreman know about your setup, if you are using puppet modules - Foreman can import your setup automatically (environments and classes) by:

rake puppet:import:puppet_classes RAILS_ENV=production

If you prefer, you may manually add classes through the setting page, however, the class names must match Puppet classes.

if from some reason you can't see your nodes, please make sure that you have the following line in your puppet.conf file (or similar)

modulepath=/etc/puppet/modules

Define classes and variables per host

You can define per host, classes and variables(parameters), simply create/edit a host, and select its classes.
if you see an empty list, make sure that you do have classes (as define in the step above).

If you want to add variables(parameters), simply add them in the same page as a set name and value.

Host Groups

Foreman allows you to group classes, into common groups similar to node inheritances in puppet
Each group can contain many classes, and variables.

If you wish to override the parameters for a specific host, create a parameter with the same name in the host level,
Foreman will override the values defined in the group level.

Other places you can define parameters

It is also possible to define default (common) parameters for all of your hosts (setting -> Global parameters).
Additionally, you can also define them on the domain level (settings -> Domain -> Domain Parameters)

*The order in which the parameters are processed is:
Global, Domain, Host Group and Node, the last occurrence of the parameter will be the one used. *

Example puppet external nodes script

You may find an example script under extras/puppet/foreman/files/external_node.rb

You would need to setup puppet to use external nodes

  external_nodes = /etc/puppet/node.rb
  node_terminus  = exec

For additional info please see Puppet documentation

Verify your setup

You may also click on the YAML link to see the output that would be used for puppet external nodes.

Import your external node setup from an older external node setup

If you already had an external node setup, you can import your old setup directly to Foreman

Note: This will import your classes and variables (parameters or tags) directly, that means that if you have any logic to dynamically generate the variables, it would not be imported.
However, if you define your parameters in the domain level (for example) they will not be added to every single host, therefor, if you want to apply certain parameters per domain, host class etc, you should define them prior to running the importer.

additionally, it will not import any invalid settings, e.g. parameters which has the same name as facts, or a non string parameters (some classifiers tend to create those).

To import the classes and parameters per host, run:

rake puppet:import:external_nodes script=/path/to/old_external_node_script RAILS_ENV=production

Note: This will only scan for hosts that already exists in our database, if you want to import hosts, use one of the other importers.

Updated by Ohad Levy almost 14 years ago · 12 revisions