-
Multiple classes block declaration in hiera will not work
Morning, Do not add multiple classes in hiera like this: — classes: – profiles::datadogagent – profiles::updatekafka kafka::security: true kafka::security_default: true kafka::heap_size: 2048 classes: – profiles::pybackuplogs – profiles::group_coordinator Class updatekafka will not be executed. The structure should look like: — classes: – profiles::datadogagent – profiles::updatekafka – profiles::pybackuplogs – profiles::group_coordinator kafka::security: true kafka::security_default: true kafka::heap_size: 2048 Cheers!
-
Install puppet gems on puppet master using hiera
Morning, I needed to install a toml-rb gem in order to my puppet traefik module to work and i just want to short post my workaround on doing that automatically. There was some code in our repo for that but it used only hiera array, don’t really know, so i had to write a very…
-
Install eyaml module on puppet master
Hi, Today i will show how i installed module used for data encrypt in order to safely include it in hiera yaml files) It really simple as described on https://github.com/voxpupuli/hiera-eyaml. The actual step that i couldn’t find explicitly written in the doku and i had to figure it out myself is that you need to…