control-repo/site-modules/profile/hiera.yaml
Andy Loftus f4f3015939 ASDPLNG-27 Add profile::base and role::default
Catalog compilation succeeds and deploys for role::default

add profiles additional_yum_repos and additional_pkgs

puppetlabs/stdlib

move some includes from profile::base to role::default
2021-01-21 17:22:09 -06:00

22 lines
689 B
YAML

---
version: 5
defaults: # Used for any hierarchy level that omits these keys.
datadir: "data" # This path is relative to hiera.yaml's directory.
data_hash: "yaml_data" # Use the built-in YAML backend.
hierarchy:
- name: "osfamily/major release"
paths:
# Used to distinguish between Debian and Ubuntu
- "os/%{facts.os.name}/%{facts.os.release.major}.yaml"
- "os/%{facts.os.family}/%{facts.os.release.major}.yaml"
# Used for Solaris
- "os/%{facts.os.family}/%{facts.kernelrelease}.yaml"
- name: "osfamily"
paths:
- "os/%{facts.os.name}.yaml"
- "os/%{facts.os.family}.yaml"
- name: "common"
path: "common.yaml"