A control repository template
Go to file
James Lane 599e52e7eb
Update README.md
Updated README
2021-01-15 10:55:10 +00:00
data Enable Hiera 5 2017-11-15 09:24:40 -08:00
manifests Update outdated info and links in site.pp comments 2019-05-06 17:36:50 -05:00
scripts Don't assume git is in /usr/bin; expect it on PATH 2019-10-16 10:05:33 -10:00
site-modules Revert "add db2_server role and profile" 2019-12-03 13:35:22 -06:00
.gitignore Ignore modules pulled from r10k into modules/ 2017-11-27 19:08:54 -05:00
CODEOWNERS (maint) Fix CODEOWNERS 2020-09-10 11:11:37 -07:00
environment.conf (maint) Update Puppetfile versions, update style 2019-07-11 09:33:14 -07:00
hiera.yaml (maint) Update Puppetfile versions, update style 2019-07-11 09:33:14 -07:00
LICENSE Initial commit 2015-08-11 10:07:49 -07:00
Puppetfile Revert "add db2 module" 2019-12-03 13:35:22 -06:00
README.md Update README.md 2021-01-15 10:55:10 +00:00

A Puppet Control Repository for LAMP - Stack

Here's a visual representation of the structure of this repository:

All code contains comments with what module is required

Code tested on latest Puppet release (2019.8.1) in an enviroment consisting of a the following vm's:

control-repo/
├── data/                                 # Hiera data directory.
│   ├── nodes/                            # Node-specific data goes here.
│   └── common.yaml                       # Common data goes here.
├── manifests/
│   └── site.pp                           # The "main" manifest that contains a default node definition.
├── scripts/
│   ├── code_manager_config_version.rb    # A config_version script for Code Manager.
│   ├── config_version.rb                 # A config_version script for r10k.
│   └── config_version.sh                 # A wrapper that chooses the appropriate config_version script.
├── site-modules/                         # This directory contains site-specific modules and is added to $modulepath.
│   ├── profile/                          # The profile module.
│   │
│   ├── manifests
│           ├── platform                      # 
│               ├── baseline                  # baseslines for platform specefic manifests
│               │    ├── 
│               │    │    ├── 
│               │    │    ├── 
│               │    │    ├── 
│               │    │    ├── 
│               │    ├── 
│               │         ├──
│               │    
│               ├──       
├── LICENSE 
├── Puppetfile                            # A list of external Puppet modules to deploy with an environment.
├── README.md
├── environment.conf                      # Environment-specific settings. Configures the modulepath and config_version.
└── hiera.yaml                            # Hiera's configuration file. The Hiera hierarchy is defined here.

LAMP - Stack Module

In conjunction with your control repo, create a new module/profile to perform the following: