Version information
This version is compatible with:
- Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 3.0.0 < 8.0.0
- , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'example42-tinydata', '0.4.5'
Learn more about managing modules with a PuppetfileDocumentation
Tiny Data
This repository contains data used to manage applications on different Operating Systems.
It's currently used by the (Tiny Puppet module as default backend where is stored the application informations.
Update policy
Software evolves and things change. Our committment is to keep Tiny Data as updated as possible, so whenever new references to new vesions (for example in repos url) are available, they will be updated. If data for some Operating Systems is incorred (and it is) we will update it without caring about possible backwards incompatibilities on existing setups: the driving principle is to have the correct data for each version of each supported operating system and application.
We recommend to make a local fork of this module and update it from this upstream version only with extreme attention. Of course any bug reporting or pull request is welcomed.
Data structure
Each supported application has a sub directory in data/
which contains:
-
the
hiera.yaml
file which describes the hierarchy to use to lookup for the relevant application data. -
the yaml files where data is stored according to the defined hierarchy.
A sample hiera.yaml
is like this:
---
:hierarchy:
- "%{title}/osfamily/%{osfamily}"
- "%{title}/default"
- default
so the lookup is done, if $title == 'mariadb'
and $::osfamily == 'RedHat'
in these files:
tinydata/data/mariadb/osfamily/RedHat.yaml
tinydata/data/mariadb/default.yaml
tinydata/data/default.yaml
The last file contains general defaults for every application.