What is the best practice for configuration of puppet modules? I have puppet 2.7.11
. I find this way quite messy, it looks like using global variables.
node default {
$always_apt_update = true
include apt
}
Should I create class which would inherit most of configuration from the original? The documentation seems to have too many versions and I'm not sure which one applies for me.
UPDATE:
when I try this:
class { 'apt':
always_update => 'true',
}
I get an error:
Error 400 on SERVER: Invalid parameter always_update at /etc/puppet/manifests/nodes.pp:32
You should use Parametrized classes instead of global variables.
For example:
See puppet documentation for more information:
These answers seems a bit outdated, with new versions of puppet i.e 3.7.x, class parameters can be passed using Hiera. Resource like class declaration is not considered best practice anymore.
Although the second answer does use Hiera, but it is using ‘hiera’ function explicitly, which is again a not so advisable practice.
The new solution would look something like this:
/etc/puppet/manifests/site.pp
:/etc/puppet/modules/apt/manifests/init.pp
:/etc/puppet/hieradata/<filename>.yaml
Hiera data yaml files can have different values of the parameter as required.
The recommended practice these days is to use Hiera. It's built into 3.x, but in 2.7 you need to install it separately.
You can then grab data from Hiera in your manifest for the
apt
class:With a Hiera config like this..
..the node (pulled from the
clientcert
fact) will be used as higher precedence in the lookup than thecommon.yaml
file.So, with
always_apt_update: false
innode1.example.com.yaml
andalways_apt_update: true
incommon.yaml
, node1 will end up with that variable set to false while other nodes will have it default to true.