Table of Contents
- Overview
- License
- Description - What the module does and why it is useful
- Setup
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
Overview
The pg_profile
module allows an easy path from first simple installation to a fully customized Enterprise setup. It is part of our family of Puppet modules to install, manage and secure Postgres databases with Puppet. Besides the pg_profile
module, this family also contains:
- pg_config For configuring every aspect of your Postgres database
- pg_secured To secure your databases according to the CIS benchmarks.
This module support Postgres 10, 11, 12, and 13.
License
Most of the Enterprise Modules modules are commercial modules. This one is NOT. It is an Open Source module. You are free to use it any way you like. It, however, is based on our commercial Puppet Postgres modules.
Description
The pg_profile::database
class contains all the Puppet code to install, create and populate an Postgres database. This class is an easy way to get started. It contains the following steps:
- em_license ( Manage Enterprise Modules Licenses)
- sysctl ( Setup any sysctl parameters)
- limits ( Setup any security limits)
- groups_and_users ( Setup required groups and users)
- packages ( Setup any required after_packages)
- firewall ( Setup the firewall)
- db_software ( Install the postgres software)
- db_init ( Take care of initial database stup)
- db_startup ( Manage starting the database)
- db_roles ( Ensure required Postgres database roles)
- db_definition ( Ensure required Postgress databases)
- db_parameters ( Ensure required Postgres database settings)
- db_tablespaces ( Ensure needed tablespaces)
- db_schemas ( Ensure needed database schema's)
- db_records ( Ensure required database records (for settings))
All these steps have a default implementation. This implementation is suitable to get started with. These classed all have parameters you can customize through hiera values. The defaults are specified in the module's data/default.yaml
file.
But sometimes this is not enough and you would like to add some extra definitions, you can, for example, add a Puppet class to be executed after the systctl
stage is done and before the limits
is done. You can do this by adding the next line to your yaml data:
pg_profile::database::before_sysctl: my_profile::my_extra_class
or after:
pg_profile::database::after_sysctl: my_profile::my_extra_class
If you want to, you can also skip this provided class:
pg_profile::database::sysctl: skip
Or provide your own implementation:
pg_profile::database::sysctl: my_profile::my_own_implementation
This mechanism can be used for all named steps and makes it easy to move from an easy setup with a running standard database to a fully customized setup using a lot of your own classes plugged in.
Check here to see the full documentation for this module.
Setup
Requirements
The pg_profile
module requires:
- Puppet module
enterprisemodules-pg_config
installed. - Puppet module
enterprisemodules-easy_type
installed. - Puppet module
enterprisemodules/pg_secured
installed. - Puppet module
ipcrm-echo
installed. - Puppet module
herculesteam-augeasproviders_core
installed. - Puppet module
herculesteam-augeasproviders_sysctl
installed. - Puppet module
saz-limits
installed. - Puppet module
puppetlabs-firewall
installed. - Puppet module
crayfishx-firewalld
installed. - Puppet module
puppetlabs-stdlib
installed. - Puppet version 5.0 or higher. Can be Puppet Enterprise or Puppet Open Source
- Postgres 10 higher
- A valid Enterprise Modules license for usage.
- Runs on most Linux systems.
- Windows systems are NOT supported
Installing the pg_profile module
To install these modules, you can use a Puppetfile
mod 'enterprisemodules/pg_profile' ,'x.x.x'
Then use the librarian-puppet
or r10K
to install the software.
You can also install the software using the puppet module
command:
puppet module install enterprisemodules-pg_profile
Usage
To get started, include the pg_profile::database
class in your role. Run Puppet and you have a running Postgres database.
Reference
Here you can find some more information regarding this puppet module:
Limitations
This module runs on most Linux versions. It requires a puppet version higher than 5. The module does NOT run on windows systems.