March 2017
Beginner to intermediate
925 pages
18h 11m
English
Hiera is an information repository for Puppet. Using Hiera you can have a hierarchical categorization of data about your nodes that is maintained outside of your manifests. This is very useful for sharing code and dealing with exceptions that will creep into any Puppet deployment.
Hiera should have already been installed as a dependency on your Puppet master. If it has not already, install it using Puppet:
root@puppet:~# puppet resource package hiera ensure=installed package { 'hiera': ensure => '1.3.4-1puppetlabs1', }
/etc/puppet/hiera.yaml. Create the file and add the following as a minimal configuration:--- :hierarchy: - common :backends: - yaml :yaml:
Read now
Unlock full access