puppetdb
Version information
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 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, 2016.4.x
- Puppet >= 4.10.0 < 9.0.0
- , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-puppetdb', '7.14.0'
Learn more about managing modules with a PuppetfileDocumentation
puppetdb
Table of Contents
- Overview - What is the PuppetDB module?
- Module Description - What does the module do?
- Setup - The basics of getting started with PuppetDB module
- Upgrading - Guide for upgrading from older revisions of this module
- Usage - The classes and parameters available for configuration
- Implementation - An under-the-hood peek at what the module is doing
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
- Release Notes - Notes on the most recent updates to the module
Overview
By guiding puppetdb setup and configuration with a Puppet master, the PuppetDB module provides fast, streamlined access to data on puppetized infrastructure.
Module Description
The PuppetDB module provides a quick way to get started using PuppetDB, an open source inventory resource service that manages storage and retrieval of platform-generated data. The module will install PostgreSQL and PuppetDB if you don't have them, as well as set up the connection to Puppet master. The module will also provide a dashboard you can use to view the current state of your system.
For more information about PuppetDB please see the official PuppetDB documentation.
Setup
What PuppetDB affects:
- package/service/configuration files for PuppetDB
- package/service/configuration files for PostgreSQL (optional, but set as default)
- Puppet master's runtime (via plugins)
- Puppet master's configuration
- note: Using the
puppetdb::master::config
class will cause your routes.yaml file to be overwritten entirely (see Usage below for options and more information )
- note: Using the
- system firewall (optional)
- listened-to ports
Introductory Questions
To begin using PuppetDB, you’ll have to make a few decisions:
- Which database back-end should I use?
- PostgreSQL (default) or our embedded database
- Embedded database
- note: As of PuppetDB 4.0, the embedded database is no longer supported as an option. When running PuppetDB 3.x, we suggest using the embedded database only for experimental environments rather than production, as it does not scale well and can cause difficulty in migrating to PostgreSQL.
- Should I run the database on the same node that I run PuppetDB on?
- Should I run PuppetDB on the same node that I run my master on?
The answers to those questions will be largely dependent on your answers to questions about your Puppet environment:
- How many nodes are you managing?
- What kind of hardware are you running on?
- Is your current load approaching the limits of your hardware?
Depending on your answers to all of the questions above, you will likely fall under one of these set-up options:
Single Node Setup
This approach assumes you will use our default database (PostgreSQL) and run everything (PostgreSQL, PuppetDB, Puppet master) all on the same node. This setup will be great for a testing or experimental environment. In this case, your manifest will look like:
node <hostname> {
# Configure puppetdb and its underlying database
class { 'puppetdb': }
# Configure the Puppet master to use puppetdb
class { 'puppetdb::master::config': }
}
You can provide some parameters for these classes if you’d like more control, but that is literally all that it will take to get you up and running with the default configuration.
Multiple Node Setup
This approach is for those who prefer not to install PuppetDB on the same node as the Puppet master. Your environment will be easier to scale if you are able to dedicate hardware to the individual system components. You may even choose to run the puppetdb server on a different node from the PostgreSQL database that it uses to store its data. So let’s have a look at what a manifest for that scenario might look like:
This is an example of a very basic 3-node setup for PuppetDB.
$puppetdb_host = 'puppetdb.example.lan'
$postgres_host = 'postgres.example.lan'
node 'master.example.lan' {
# Here we configure the Puppet master to use PuppetDB,
# telling it the hostname of the PuppetDB node
class { 'puppetdb::master::config':
puppetdb_server => $puppetdb_host,
}
}
node 'postgres.example.lan' {
# Here we install and configure PostgreSQL and the PuppetDB
# database instance, and tell PostgreSQL that it should
# listen for connections to the `$postgres_host`
class { 'puppetdb::database::postgresql':
listen_addresses => $postgres_host,
}
}
node 'puppetdb.example.lan' {
# Here we install and configure PuppetDB, and tell it where to
# find the PostgreSQL database.
class { 'puppetdb::server':
database_host => $postgres_host,
}
}
This should be all it takes to get a 3-node, distributed installation of PuppetDB up and running. Note that, if you prefer, you could easily move two of these classes to a single node and end up with a 2-node setup instead.
Enable SSL connections
To use SSL connections for the single node setup, use the following manifest:
node <hostname> {
# Here we configure puppetdb and PostgreSQL to use ssl connections
class { 'puppetdb':
postgresql_ssl_on => true,
database_host => '<hostname>',
database_listen_address => '0.0.0.0'
}
# Configure the Puppet master to use puppetdb
class { 'puppetdb::master::config': }
To use SSL connections for the multiple nodes setup, use the following manifest:
$puppetdb_host = 'puppetdb.example.lan'
$postgres_host = 'postgres.example.lan'
node 'master.example.lan' {
# Here we configure the Puppet master to use PuppetDB,
# telling it the hostname of the PuppetDB node.
class { 'puppetdb::master::config':
puppetdb_server => $puppetdb_host,
}
}
node 'postgres.example.lan' {
# Here we install and configure PostgreSQL and the PuppetDB
# database instance, and tell PostgreSQL that it should
# listen for connections to the `$postgres_host`.
# We also enable SSL connections.
class { 'puppetdb::database::postgresql':
listen_addresses => $postgres_host,
postgresql_ssl_on => true,
puppetdb_server => $puppetdb_host
}
}
node 'puppetdb.example.lan' {
# Here we install and configure PuppetDB, and tell it where to
# find the PostgreSQL database. We also enable SSL connections.
class { 'puppetdb::server':
database_host => $postgres_host,
postgresql_ssl_on => true
}
}
Beginning with PuppetDB
Whether you choose a single node development setup or a multi-node setup, a basic setup of PuppetDB will cause: PostgreSQL to install on the node if it’s not already there; PuppetDB postgres database instance and user account to be created; the postgres connection to be validated and, if successful, PuppetDB to be installed and configured; PuppetDB connection to be validated and, if successful, the Puppet master config files to be modified to use PuppetDB; and the Puppet master to be restarted so that it will pick up the config changes.
If your logging level is set to INFO or finer, you should start seeing PuppetDB-related log messages appear in both your Puppet master log and your puppetdb log as subsequent agent runs occur.
Cross-node Dependencies
It is worth noting that there are some cross-node dependencies, which means that the first time you add the module's configurations to your manifests, you may see a few failed puppet runs on the affected nodes.
PuppetDB handles cross-node dependencies by taking a sort of "eventual consistency" approach. There’s nothing that the module can do to control the order in which your nodes check in, but the module can check to verify that the services it depends on are up and running before it makes configuration changes--so that’s what it does.
When your Puppet master node checks in, it will validate the connectivity to the puppetdb server before it applies its changes to the Puppet master config files. If it can’t connect to puppetdb, then the puppet run will fail and the previous config files will be left intact. This prevents your master from getting into a broken state where all incoming puppet runs fail because the master is configured to use a puppetdb server that doesn’t exist yet. The same strategy is used to handle the dependency between the puppetdb server and the postgres server.
Hence the failed puppet runs. These failures should be limited to 1 failed run on the puppetdb node, and up to 2 failed runs on the Puppet master node. After that, all of the dependencies should be satisfied and your puppet runs should start to succeed again.
You can also manually trigger puppet runs on the nodes in the correct order (Postgres, PuppetDB, Puppet master), which will avoid any failed runs.
Upgrading
Upgrading from 4.x to 5.x
Significant parameter changes are listed below:
- The PuppetDB module defaults to Puppet 4 pathing and assumes
puppetserver
is the master service by default - The PuppetDB module manages Postgres repos by default. To turn this behavior
off, set
manage_package_repo
tofalse
. - To specify a specific version of PuppetDB to manage, you'll need to use the
puppetdb::globals
class to set the version of PuppetDB you're using explicitly. The ability to configure the version in thepuppetdb::server
andpuppetdb
class have been removed.
For example if your config looked like this before:
class {'puppetdb':
puppetdb_version => '3.2.4-1.el7',
}
class { 'puppetdb::master::config': }
and you'd still like to use the module with PuppetDB 3.2.4, all you'd have to change would be:
class { 'puppetdb::globals':
version => '3.2.4-1.el7',
}
class { 'puppetdb' : }
class { 'puppetdb::master::config' : }
The globals
class above takes into account the following PuppetDB 3 and Puppet
4 related changes:
* The `puppetdb::master:puppetdb_conf` class has added a `$legacy_terminus`
to support the PuppetDB 2.x terminus configuration.
* The default `test_url` for the `PuppetDBConnValidator` has also been
changed to `/pdb/meta/v1/version` but will default to `/v3/version` when
using a PuppetDB 2.x version.
* The configuration pathing for Puppet and PuppetDB has changed with Puppet
4 and PuppetDB 3, using PuppetDB 2.x or older assumes the old
configuration pathing.
See the CHANGELOG file for more detailed information on changes for each release.
Upgrading from 3.x to 4.x
For this release, all dependency versions have been bumped to their latest. Significant parameter changes are listed below:
- The PuppetDB module now only supports Puppet 3.7.1 or later
puppetlabs/postgresql
4.0.0 or later is now requiredpuppetlabs/inifile
1.1.3 or later is now requiredpuppetlabs/firewall
1.1.3 or later is now requiredpuppetlabs/stdlib
4.2.2 or later is now required- The parameter
manage_firewall
for the classpuppetdb::database::postgresql
has now been removed, since the PostgreSQL module no longer supports this. - The parameter
open_postgres_port
for the classpuppetdb
has also been removed, due to PostgreSQL changes.
See the CHANGELOG file for more detailed information on changes for each release.
Upgrading from 2.x to 3.x
For this release a major dependency has changed. The module
pupppetlabs/postgresql
must now be version 3.x. Upgrading the module should
upgrade the puppetlabs/postgresql
module for you, but if another module has a
fixed dependency that module will have to be fixed before you can continue.
Some other changes include:
- The parameter
manage_redhat_firewall
for the classpuppetdb
has now been removed completely in favor ofopen_postgres_port
andopen_ssl_listen_port
. - The parameter
manage_redhat_firewall
for the classpuppetdb::database::postgresql
, has now been renamed tomanage_firewall
. - The parameter
manage_redhat_firewall
for the classpuppetdb::server
has now been removed completely in favor ofopen_listen_port
andopen_ssl_listen_port
. - The internal class:
puppetdb::database::postgresql_db
has been removed. If you were using this, it is now defunct. - The class
puppetdb::server::firewall
has been marked as private, do not use it directly. - The class
puppetdb::server::jetty_ini
andpuppetdb::server::database_ini
have been marked as private, do not use it directly.
Upgrading from 1.x to 2.x
A major dependency has been changed, so now when you upgrade to 2.0 the
dependency cprice404/inifile
has been replaced with puppetlabs/inifile
. This
may interfere with other modules as they may depend on the old
cprice404/inifile
instead, so upgrading should be done with caution. Check
that your other modules use the newer puppetlabs/inifile
module as
interoperation with the old cprice404/inifile
module will no longer be
supported by this module.
Depending on how you install your modules, changing the dependency may require
manual intervention. Double check your modules contain the newer
puppetlabs/inifile
after installing this latest module.
Otherwise, all existing parameters from 1.x should still work correctly.
Usage
PuppetDB supports a large number of configuration options for both configuring the puppetdb service and connecting that service to the Puppet master.
puppetdb::globals
The puppetdb::globals
class is intended to provide similar functionality to
the postgresql::globals
class in the puppetlabs-postgresql
module by
exposing a top-level entry-point into the module so that we can properly set
defaults for the puppetdb::params
class based on the version of puppetdb
you
are using. This setting defaults to present
.
You must declare the class to use it:
class { 'puppetdb::globals': }
Parameters within puppetdb::globals
:
version
The version of the puppetdb
package that should be installed. You may specify
an explicit version number, 'present', or 'latest' (defaults to 'present').
puppetdb
The puppetdb
class is intended as a high-level abstraction (sort of an
'all-in-one' class) to help simplify the process of getting your puppetdb server
up and running. It wraps the slightly-lower-level classes puppetdb::server
and
puppetdb::database::*
, and it'll get you up and running with everything you
need (including database setup and management) on the server side. For maximum
configurability, you may choose not to use this class. You may prefer to use the
puppetdb::server
class directly, or manage your puppetdb setup on your own.
You must declare the class to use it:
class { 'puppetdb': }
Parameters within puppetdb
:
listen_address
The address that the web server should bind to for HTTP requests. Defaults to
localhost
. Set to 0.0.0.0
to listen on all addresses.
listen_port
The port on which the puppetdb web server should accept HTTP requests. Defaults
to 8080
.
disable_cleartext
If true, the puppetdb web server will only serve HTTPS and not HTTP requests (defaults to false).
open_listen_port
If true
, open the http_listen_port
on the firewall. Defaults to false
.
ssl_listen_address
The address that the web server should bind to for HTTPS requests. Defaults to
0.0.0.0
to listen on all addresses.
ssl_listen_port
The port on which the puppetdb web server should accept HTTPS requests. Defaults
to 8081
.
disable_ssl
If true
, the puppetdb web server will only serve HTTP and not HTTPS requests.
Defaults to false
.
open_ssl_listen_port
If true, open the ssl_listen_port
on the firewall. Defaults to undef
.
ssl_protocols
Specify the supported SSL protocols for PuppetDB (e.g. TLSv1, TLSv1.1, TLSv1.2.)
postgresql_ssl_on
If true
, it configures SSL connections between PuppetDB and the PostgreSQL database.
Defaults to false
.
cipher_suites
Configure jetty's supported cipher-suites
(e.g. SSL_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
).
Defaults to undef
.
migrate
If true
, puppetdb will automatically migrate to the latest database format at startup. If false
, if the database format supplied by this version of PuppetDB doesn't match the version expected (whether newer or older), PuppetDB will exit with an error status. Defaults to true
.
manage_dbserver
If true, the PostgreSQL server will be managed by this module. Defaults to true
.
manage_database
If true, the PostgreSQL database will be managed by this module. Defaults to true
.
database
Which database backend to use; legal values are postgres
(default)
or embedded
. The embedded
option is not supported on PuppetDB
4.0.0 or later. embedded
can be used for very small installations or
for testing, but is not recommended for use in production
environments. For more info, see the puppetdb
docs.
database_host
Hostname to use for the database connection. For single case installations this
should be left as the default. Defaults to localhost
, ignored for embedded
database.
database_port
The port that the database server listens on. Defaults to 5432
, ignored for
embedded
database.
database_username
The name of the database user to connect as. Defaults to puppetdb
, ignored for
embedded
database.
database_password
The password for the database user. Defaults to puppetdb
, ignored for
embedded
database.
manage_db_password
Whether or not the database password in database.ini will be managed by this module.
Set this to false
if you want to set the password some other way.
Defaults to true
database_name
The name of the database instance to connect to. Defaults to puppetdb
, ignored
for embedded
database.
jdbc_ssl_properties
The text to append to the JDBC connection URI. This should begin with a '?'
character. For example, to use SSL for the PostgreSQL connection, set this
parameter's value to ?ssl=true
.
This setting is only available when using PostgreSQL; when using HyperSQL (the
embedded
database), it does nothing.
database_validate
If true, the module will attempt to connect to the database using the specified
settings and fail if it is not able to do so. Defaults to true
.
database_embedded_path
Embedded Database Only Changes the path location for the HSQLDB database. Does not provide migration for old data, so if you change this value and you have an existing database you will need to manually move the content also. (defaults to package default for 2.x release).
node_ttl
The length of time a node can go without receiving any new data before it's automatically deactivated. (defaults to '7d', which is a 7-day period. Set to '0d' to disable auto-deactivation). This option is supported in PuppetDB >= 1.1.0.
node_purge_ttl
The length of time a node can be deactivated before it's deleted from the database. (defaults to '14d', which is a 14-day period. Set to '0d' to disable purging). This option is supported in PuppetDB >= 1.2.0.
report_ttl
The length of time reports should be stored before being deleted. (defaults to
14d
, which is a 14-day period). This option is supported in PuppetDB >= 1.1.0.
gc_interval
This controls how often (in minutes) to compact the database. The compaction process reclaims space and deletes unnecessary rows. If not supplied, the default is every 60 minutes. This option is supported in PuppetDB >= 0.9.
log_slow_statements
This sets the number of seconds before an SQL query is considered "slow." Slow SQL queries are logged as warnings, to assist in debugging and tuning. Note PuppetDB does not interrupt slow queries; it simply reports them after they complete.
The default value is 10
seconds. A value of 0 will disable logging of slow
queries. This option is supported in PuppetDB >= 1.1.
conn_max_age
The maximum time (in minutes) for a pooled connection to remain unused before it is closed off.
If not supplied, we default to 60
minutes. This option is supported in PuppetDB >= 1.1.
conn_keep_alive
This sets the time (in minutes) for a connection to remain idle before sending a test query to the DB. This is useful to prevent a DB from timing out connections on its end.
If not supplied, we default to 45 minutes. This option is supported in PuppetDB >= 1.1.
conn_lifetime
The maximum time (in minutes) a pooled connection should remain open. Any connections older than this setting will be closed off. Connections currently in use will not be affected until they are returned to the pool.
If not supplied, we won't terminate connections based on their age alone. This option is supported in PuppetDB >= 1.4.
puppetdb_package
The PuppetDB package name in the package manager. Defaults to present
.
puppetdb_service
The name of the PuppetDB service. Defaults to puppetdb
.
puppetdb_service_status
Sets whether the service should be running
or stopped
. When set to stopped
the
service doesn't start on boot either. Valid values are true
, running
,
false
, and stopped
.
confdir
The PuppetDB configuration directory. Defaults to /etc/puppetdb/conf.d
.
vardir
The parent directory for the MQ's data directory.
java_args
Java VM options used for overriding default Java VM options specified in
PuppetDB package. Defaults to {}
. See
PuppetDB Configuration
to get more details about the current defaults.
For example, to set -Xmx512m -Xms256m
options use:
{
'-Xmx' => '512m',
'-Xms' => '256m',
}
merge_default_java_args
Sets whether the provided java args should be merged with the defaults, or
should override the defaults. This setting is necessary if any of the defaults
are to be removed. Defaults to true. If false
, the java_args
in the PuppetDB
init config file will reflect only what is passed via the java_args
param.
max_threads
Jetty option to explicitly set max-threads
. Defaults to undef
, so the
PuppetDB-Jetty default is used.
read_database
Which database backend to use for the read database. Only supports
postgres
(default). This option is supported in PuppetDB >= 1.6.
read_database_host
This parameter must be set to use another PuppetDB instance for queries.
The hostname or IP address of the read database server. If set to undef
, and
manage_database
is set to true
, it will use the value of the database_host
parameter. This option is supported in PuppetDB >= 1.6.
read_database_port
The port that the read database server listens on. If read_database_host
is set to undef
, and manage_database
is set to true
, it will use the value of
the database_port
parameter. This option is supported in PuppetDB >= 1.6.
read_database_username
The name of the read database user to connect as. Defaults to puppetdb-read
. This
option is supported in PuppetDB >= 1.6.
read_database_password
The password for the read database user. Defaults to puppetdb-read
. This option is
supported in PuppetDB >= 1.6.
manage_read_db_password
Whether or not the database password in read-database.ini will be managed by this module.
Set this to false
if you want to set the password some other way.
Defaults to true
read_database_name
The name of the read database instance to connect to. If read_database_host
is set to undef
, and manage_database
is set to true
, it will use the value of
the database_name
parameter. This option is supported in PuppetDB >= 1.6.
read_log_slow_statements
This sets the number of seconds before an SQL query to the read database is considered "slow." Slow SQL queries are logged as warnings, to assist in debugging and tuning. Note PuppetDB does not interrupt slow queries; it simply reports them after they complete.
The default value is 10 seconds. A value of 0 will disable logging of slow queries. This option is supported in PuppetDB >= 1.6.
read_conn_max_age
The maximum time (in minutes) for a pooled read database connection to remain unused before it is closed off.
If not supplied, we default to 60 minutes. This option is supported in PuppetDB >= 1.6.
read_conn_keep_alive
This sets the time (in minutes) for a read database connection to remain idle before sending a test query to the DB. This is useful to prevent a DB from timing out connections on its end.
If not supplied, we default to 45 minutes. This option is supported in PuppetDB >= 1.6.
read_conn_lifetime
The maximum time (in minutes) a pooled read database connection should remain open. Any connections older than this setting will be closed off. Connections currently in use will not be affected until they are returned to the pool.
If not supplied, we won't terminate connections based on their age alone. This option is supported in PuppetDB >= 1.6.
ssl_dir
Base directory for PuppetDB SSL configuration. Defaults to /etc/puppetdb/ssl
or /etc/puppetlabs/puppetdb/ssl
for FOSS and PE respectively.
ssl_set_cert_paths
A switch to enable or disable the management of SSL certificates in your
jetty.ini
configuration file.
ssl_cert_path
Path to your SSL certificate for populating jetty.ini
.
ssl_key_path
Path to your SSL key for populating jetty.ini
.
ssl_ca_cert_path
Path to your SSL CA for populating jetty.ini
.
ssl_deploy_certs
A boolean switch to enable or disable the management of SSL keys in your
ssl_dir
. Default is false
.
ssl_key
Contents of your SSL key, as a string.
ssl_cert
Contents of your SSL certificate, as a string.
ssl_ca_cert
Contents of your SSL CA certificate, as a string.
manage_firewall
If true
, puppet will manage your iptables rules for PuppetDB via the
puppetlabs-firewall class.
command_threads
The number of command processing threads to use. Defaults to undef
, using the
PuppetDB built-in default.
concurrent_writes
The number of threads allowed to write to disk at any one time. Defaults to
undef
, which uses the PuppetDB built-in default.
store_usage
The amount of disk space (in MB) to allow for persistent message storage.
Defaults to undef
, using the PuppetDB built-in default.
temp_usage
The amount of disk space (in MB) to allow for temporary message storage.
Defaults to undef
, using the PuppetDB built-in default.
disable_update_checking
Setting this to true disables checking for updated versions of PuppetDB and sending basic analytics data to Puppet.
Defaults to undef
, using the PuppetDB built-in default.
certificate_whitelist_file
The name of the certificate whitelist file to set up and configure in PuppetDB. Defaults to /etc/puppetdb/certificate-whitelist
or /etc/puppetlabs/puppetdb/certificate-whitelist
for FOSS and PE respectively.
certificate_whitelist
Array of the X.509 certificate Common Names of clients allowed to connect to PuppetDB. Defaults to empty. Be aware that this permits full access to all Puppet clients to download anything contained in PuppetDB, including the full catalogs of all nodes, which possibly contain sensitive information. Set to [ $::servername ]
to allow access only from your (single) Puppet master, which is enough for normal operation. Set to a list of Puppet masters if you have multiple.
automatic_dlo_cleanup
PuppetDB creates Dead Letter Office. Those are reports of failed requests. They spill up the disk. This parameter is a boolean and defaults to false. You can enable automatic cleanup of DLO reports by setting this to true.
cleanup_timer_interval
The DLO cleanup is a systemd timer if systemd is available, otherwise a
cronjob. The variable configures the systemd.timer option onCalender.
It defaults to *-*-* ${fqdn_rand(24)}:${fqdn_rand(60)}:00
. This will start
the cleanup service on a daily basis. The exact minute and hour is random
per node based on the fqdn_rand
method. On non-systemd systems, the cron runs daily and the $puppetdb_user
needs
to be able to run cron jobs. On systemd systems you need the camptocamp/systemd
module, which is an optional dependency and not automatically installed!
dlo_max_age
This is a positive integer. It describes the amount of days you want to keep the DLO reports. The default value is 90 days.
puppetdb::server
The puppetdb::server
class manages the PuppetDB server independently of the
underlying database that it depends on. It will manage the PuppetDB package,
service, config files, etc., but will still allow you to manage the database
(e.g. PostgreSQL) however you see fit.
class { 'puppetdb::server':
database_host => 'pg1.mydomain.com',
}
puppetdb::master::config
The puppetdb::master::config
class directs your Puppet master to use PuppetDB,
which means that this class should be used on your Puppet master node. It’ll
verify that it can successfully communicate with your PuppetDB server, and then
configure your master to use PuppetDB.
Using this class allows the module to manipulate the puppet configuration files
puppet.conf and routes.yaml. The puppet.conf changes are supplemental and should
not affect any of your existing settings, but the routes.yaml file will be
overwritten entirely. If you have an existing routes.yaml file, you will want to
take care to use the manage_routes
parameter of this class to prevent the module
from managing that file, and you’ll need to manage it yourself.
class { 'puppetdb::master::config':
puppetdb_server => 'my.host.name',
puppetdb_port => 8081,
}
Parameters within puppetdb::master::config
:
puppetdb_server
The dns name or ip of the PuppetDB server. Defaults to the hostname of the
current node, i.e. $::fqdn
.
puppetdb_port
The port that the PuppetDB server is running on. Defaults to 8081
.
puppetdb_disable_ssl
If true, use plain HTTP to talk to PuppetDB. Defaults to the value of
disable_ssl
if PuppetDB is on the same server as the Puppet Master, or else
false. If you set this, you probably need to set puppetdb_port
to match the HTTP
port of the PuppetDB.
puppetdb_soft_write_failure
Boolean to fail in a soft manner if PuppetDB is not accessible for command
submission Defaults to false
.
manage_routes
If true
, the module will overwrite the Puppet master's routes file to
configure it to use PuppetDB. Defaults to true
.
manage_storeconfigs
If true
, the module will manage the Puppet master's storeconfig settings.
Defaults to true
.
manage_report_processor
If true
, the module will manage the 'reports' field in the puppet.conf file to
enable or disable the PuppetDB report processor. Defaults to false
.
manage_config
If true
, the module will store values from puppetdb_server
and puppetdb_port
parameters in the PuppetDB configuration file. If false
, an existing PuppetDB
configuration file will be used to retrieve server and port values.
create_puppet_service_resource
If true
, AND if restart_puppet
is true, then the module will create a service
resource for puppet_service_name
if it has not been defined. Defaults to true
.
If you are already declaring the puppet_service_name
service resource in another
part of your code, setting this to false
will avoid creation of that service
resource by this module, avoiding potential duplicate resource errors.
strict_validation
If true
, the module will fail if PuppetDB is not reachable, otherwise it will
preconfigure PuppetDB without checking.
enable_reports
Ignored unless manage_report_processor
is true
, in which case this setting
will determine whether or not the PuppetDB report processor is enabled (true
)
or disabled (false
) in the puppet.conf file.
enable_storeconfigs
Ignored unless manage_storeconfigs
is true
, in which case this setting
will determine whether or not client configuration storage is enabled (true
)
or disabled (false
) in the puppet.conf file.
puppet_confdir
Puppet's config directory. Defaults to /etc/puppet
.
puppet_conf
Puppet's config file. Defaults to /etc/puppet/puppet.conf
.
masterless
A boolean switch to enable or disable the masterless setup of PuppetDB. Defaults
to false
.
terminus_package
Name of the package to use that represents the PuppetDB terminus code. Defaults
to puppetdb-termini
, when puppetdb_version
is set to <= 2.3.x
the default
changes to puppetdb-terminus
.
puppet_service_name
Name of the service that represents Puppet. You can change this to apache2
or
httpd
depending on your operating system, if you plan on having Puppet run
using Apache/Passenger for example.
puppetdb_startup_timeout
The maximum amount of time that the module should wait for PuppetDB to start up. This is most important during the initial install of PuppetDB (defaults to 15 seconds).
restart_puppet
If true
, the module will restart the Puppet master when PuppetDB configuration
files are changed by the module. Defaults to true
. If set to false
, you
must restart the service manually in order to pick up changes to the config
files (other than puppet.conf
).
puppetdb::database::postgresql
The puppetdb::database::postgresql
class manages a PostgreSQL server for use
by PuppetDB. It can manage the PostgreSQL packages and service, as well as
creating and managing the PuppetDB database and database user accounts.
class { 'puppetdb::database::postgresql':
listen_addresses => 'my.postgres.host.name',
}
listen_addresses
The listen_address
is a comma-separated list of hostnames or IP addresses on
which the postgres server should listen for incoming connections. This defaults
to localhost
. This parameter maps directly to PostgreSQL's listen_addresses
config option. Use a *
to allow connections on any accessible address.
database_name
Sets the name of the database. Defaults to puppetdb
.
database_username
Creates a user for access the database. Defaults to puppetdb
.
database_password
Sets the password for the database user above. Defaults to puppetdb
.
manage_server
Conditionally manages the PostgreSQL server via postgresql::server
. Defaults
to true
. If set to false
, this class will create the database and user via
postgresql::server::db
but not attempt to install or manage the server itself.
test_url
The URL to use for testing if the PuppetDB instance is running. Defaults to
/pdb/meta/v1/version
.
manage_package_repo
If true
, the official postgresql.org repo will be added and postgres won't
be installed from the regular repository. Defaults to true
.
postgres_version
If the postgresql.org repo is installed, you can install several versions of
postgres. Defaults to 11
with PuppetDB version 7.0.0 or newer, and 9.6
in older versions.
Implementation
Resource overview
In addition to the classes and variables mentioned above, PuppetDB includes:
puppetdb::master::routes
Configures the Puppet master to use PuppetDB as the facts terminus. WARNING: the current implementation simply overwrites your routes.yaml file; if you have an existing routes.yaml file that you are using for other purposes, you should not use this.
class { 'puppetdb::master::routes':
puppet_confdir => '/etc/puppet'
}
The optional parameter routes can be used to specify a custom route configuration. For example to configure routes for masterless puppet.
class { 'puppetdb::master::routes':
routes => {
'apply' => {
'facts' => {
'terminus' => 'facter',
'cache' => 'puppetdb_apply',
}
}
}
}
puppetdb::master::storeconfigs
Configures the Puppet master to enable storeconfigs and to use PuppetDB as the storeconfigs backend.
class { 'puppetdb::master::storeconfigs':
puppet_conf => '/etc/puppet/puppet.conf'
}
puppetdb::server::validate_db
Validates that a successful database connection can be established between the node on which this resource is run and the specified PuppetDB database instance (host/port/user/password/database name).
puppetdb::server::validate_db { 'validate my puppetdb database connection':
database_host => 'my.postgres.host',
database_username => 'mydbuser',
database_password => 'mydbpassword',
database_name => 'mydbname',
}
Custom Types
puppetdb_conn_validator
Verifies that a connection can be successfully established between a node and the PuppetDB server. Its primary use is as a precondition to prevent configuration changes from being applied if the PuppetDB server cannot be reached, but it could potentially be used for other purposes such as monitoring.
Limitations
Currently, PuppetDB is compatible with:
Puppet Version: 4.10+
Platforms:
- EL 5, 6, 7
- Debian 6, 7
- Ubuntu 10.04, 12.04, 14.04
Community Maintained Platforms:
- Archlinux
- OpenBSD 5.6-current and newer
- SLES 11 SP1
Development
Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.
We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
You can read the complete contribution guide.
puppetlabs-puppetdb changelog
Release notes for the puppetlabs-puppetdb module.
7.14.0 - 2023/10/09
- Owner of puppetdb config.ini is now root
- Remove support for EOL OSes CentOS 6, Debian 8 & 9.
7.13.0 - 2023/04/19
- Replace usage of legacy ::osfamily fact with structured form PDB-5611
7.12.0 - 2022/12/13
- Grant read role to write user to fix database user permissions issue PDB-5559
7.11.0 - Not Released
7.10.0 - 2021/12/16
- Add support for Debian 11
- Allow puppetlabs/stdlib 8.0.0
- Default to PostgreSQL 11 when using PuppetDB 7.0.0 or later
- Update minimum version of puppetlabs/postgresql module to 6.5.0
7.9.0 - 2021/06/23
- When
manage_database
is true, it will create a read-only user in postgres and configure PuppetDB to use that user for its read-database connection pool - Update module dependencies for inifile, firewall, and stdlib
7.8.0 - 2021/03/25
- Added an option
postgresql_ssl_on
to enable an SSL connection between PostgreSQL and PuppetDB using Puppet agent certificates to verify the connection and authorize PuppetDB to access the puppetdb database. - Update our metadata to allow puppetlabs-postgresql 7 (this fixes an issue on el8)
7.7.1 - 2020/12/15
- When using Puppet 7 or newer, the connection validator will use the new HTTP client. This removes a deprecation warning in the agent output.
7.7.0 - 2020/11/05
- When applied to a node running puppet
7.0.0
or newer, thepuppetdb::master::config
class will default to thejson
fact cache. See PUP-10656 for more information.
7.6.0 - 2020/09/02
- Added
migrate
parameter to manage the database.ini config option - Added Ubuntu 20.04 LTS as a supported platform
7.5.0 - 2020/06/10
- Added
java_bin
parameter to set the full path to the java bin - Added
node_purge_gc_batch_limit
parameter - Added
facts_blacklist
parameter to manage the database.ini config option - Added
manage_db_password
andmanage_read_db_password
parameters - Updated functions to use puppet4 functions
- Added
enable_storeconfigs
parameter, specifies whether or not the manage the master's storeconfigs (default:true
)
7.4.0 - 2019/06/14
This is a minor feature release.
Detailed changes:
- Add the
manage_database
parameter to skip database and extension creation
7.3.0 - 2019/06/14
This is a minor feature release.
Detailed changes:
- Update module dependencies for firewall and stdlib
7.2.0 - 2019/05/17
This is a minor feature release.
Detailed changes:
- Update module dependencies for inifile and PostgreSQL
7.1.0 - 2018/10/02
This is a minor feature release.
Detailed changes:
- Fix issue with DLO path default being hardcoded
- Update module dependencies to allow compatibility with Puppet 6
7.0.1 - 2018/07/30
This is a minor bugfix release.
Detailed changes:
- Update the upper bound of required puppet version in metadata.json (Thanks @ekohl!)
7.0.0 - 2018/06/27
This is a major release that replaces validate_* methods with data types. The minimum required version of puppetlabs/stdlib has been bummped to 4.13.1 in order to get the new data types. Thanks very much to @bastelfreak for your submissions!
Detailed changes:
- Require puppetlabs/stdlib >= 4.13.1
- Bump puppet-lint to version 2
- Bump minimal recommended puppet4 version to 4.7.1
- Replace uses of validate_* methods in favor of data types (Thanks @bastelfreak!)
- Add data type for ttl (Thanks @bastelfreak!)
- Update list of supported platforms
- Retire the previously deprecated
database_ssl
andread_database_ssl
params in favor ofjdbc_ssl_properties
andread_database_jdbc_ssl_properties
6.0.2 - 2017/11/06
This is a minor bugfix release.
Detailed changes:
- Update the upper bound of the puppetlabs inifile dependency
- Explicitly add database dependency in the PostgreSQL manifest (Thanks @pgassmann!)
6.0.1 - 2017/06/05
This is a minor bugfix release.
Detailed changes:
- Update the required puppet version in metadata.json
6.0.0 - 2017/06/05
This is a major release to support PuppetDB 5.0. Note that the default PostgreSQL version is now 9.6, the minimum required by PuppetDB 5.0. If you're running an older version, be sure to explicitly specifying it when upgrading the module so it doesn't get upgraded out from under you.
Detailed changes:
- Require Puppet >= 4.7
- If unspecified, install PostgreSQL version 9.6
- Default node-ttl and node-purge ttl to 7 days and 14 days, respectively.
- Support puppetlabs-postgresql version 5.x (Thanks @dhollinger!)
- Add create_service_resource param to avoid duplicate resource errors in some situations. (Thanks @kpaulisse!)
- Configure the master service as 'enabled' when it is automatically added (Thanks @tampakrap!)
- Add concurrent_writes parameter (Thanks @aperiodic!)
- Add cipher_suites option to configure jetty's SSL support (Thanks @selyx!)
- Add support for Ruby 2.3.1 (Thanks @ghoneycutt!)
- Specify mode of routes.yaml (Thanks @tampakrap!)
- Add [read_]database_max_pool_size parameter (Thanks @kpaulisse and @vine77!)
- Fix user/group names on OpenBSD (Thanks @buzzdeee!)
- Enforce permissions of managed ini files (Thanks @kbarber!)
- Manage the pg_trgm database extension (Thanks @PascalBourdier!)
- Default open_ssl_listen_port to undef instead of true (Thanks @mmckinst!)
5.1.2 - 2016/03/14
This is a minor bugfix release.
Detailed changes:
- Support RHEL upgrades from the
puppetdb-terminus
(<= PuppetDB 2) to thepuppetdb-termini
(>= PuppetDB 3).
5.1.1 - 2016/02/09
This is a minor bugfix release.
Detailed changes:
- Revert a change to 'puppetdb-terminus' installation process that occurred in the last release.
5.1.0 - 2016/02/09
This is a minor feature release.
Detailed changes:
- Use 'puppetdb-terminus' as the terminus package on RHEL, to avoid packaging conflicts that could occur on upgrades from 2.x to 3.x. The 'puppetdb-terminus' version 3.x package on RHEL will install 'puppetdb-termini' as a dependency.
- Add jdbc_ssl_properties parameter.
- Pass 'dport' parameter to puppetlabs/firewall instead of the deprecated 'port'.
- Pass database_port parameter to the postgresql class.
- Manage the puppetdb vardir.
- Allow default java_args to be overridden.
- Linting fixes.
5.0.0 - 2015/07/08
This is a major release to provide default support for PuppetDB 3.0.0, so lots of changes have been introduced. Ensure you read the upgrade guide provided in the README before upgrading to this release.
Detailed changes:
- Packaging paths by default favour the PDB 3.0.0 AIO paths now.
- Added legacy handling for old terminus & service versions (see upgrade guide in README for details)
- PDB 3.0.0 introduces new pathing for the API requests, so all the defaults for this module are switched to use that now.
- Support for Puppet 4 added.
- manage_pg_repo is now on by default when using the puppetlabs/postgresql module, as PDB 3.0.0 supports only 9.4. This enables the use of the upstream PGDG PostgreSQL repos for all distros to obtain a working version of 9.4. The option can be disabled if required.
- Default ssl-host is now 0.0.0.0
4.3.0 - 2015/06/10
This is a minor feature release.
Detailed changes:
- Feature: Provide
database_embedded_path
option for overriding HSQLDB file path. - Feature: Add ability to manage
command_threads
,store_usage
andtemp_usage
. - Bug: allow database_validation to be false
- Bug: Fix ordering issues with read_database_ini
- Testing: Fix file_concat dependency and fix rspec warnings
4.2.1 - 2015/04/07
This is a minor bugfix release.
Detailed Changes:
- Ignore
._foo
files when building the.tar.gz
of the module.
4.2.0 - 2015/04/02
This is a minor feature release.
Detailed Changes:
- Added Puppet 4 compatibility by introspecting the value for
$puppet_confdir
. - Added
masterless
param switch to enable or disable the masterless setup of PuppetDB. - Added
manage_package_repo
param which will setup the official PostgreSQL repositories on your host. - Added FreeBSD support.
- The puppetdb service now restarts if the certificates change.
manage_firewall
andssl_protocols
are now configurable through the top-level puppetdb class.- Show the puppetdb server URI scheme in connection errors.
test_url
param is now properly passed from the resource to the provider.- Removed dead PE code and unused variables from the module.
- New parameter
puppetdb_disable_ssl
to enable validation to use cleartext. - Database validation is now optional via the
database_validate
andread_database_validate
params. - Documentation updates to the README and metadata.json.
4.1.0 - 2014/11/13
This is a minor feature release.
Detailed Changes:
- New capabilities added for installing SSL certificates and keys.
- New parameter
puppetdb_disable_ssl
to enable validation to use cleartext. ssl_protocols
now provided to allow users to fine tune what protocols they want to support for PuppetDB.- Lots of documentation and parameter cleanups, to ensure consistency.
- test_url is now supported for
puppetdb::master::config
to allow the URL one uses to be overridden. - Corrected PE detection support.
- Correct the path for HSQLDB to use /var/lib/puppetdb/db instead of /usr/share/puppetdb/db as is standard in PuppetDB core.
4.0.0 - 2014/09/16
For this release, all dependency versions have been bumped to their latest.
Detailed Changes:
- The PuppetDB module now only supports Puppet 3.7.1 or later
- 'puppetlabs/postgresql' 4.0.0 or later is now required
- 'puppetlabs/inifile' 1.1.3 or later is now required
- 'puppetlabs/firewall' 1.1.3 or later is now required
- 'puppetlabs/stdlib' 4.2.2 or later is now required
- The parameter
manage_firewall
for the classpuppetdb::database::postgresql
has now been removed, since the postgresql module no longer supports this. - The parameter
open_postgres_port
for the classpuppetdb
has also been removed, due to postgresql changes.
3.0.1 - 2014/02/11
This release contains only minor bug fixes.
Detailed Changes:
- Add missing PUBLISHER_LOGIN variable for auto-publish. (Ashley Penney)
- fix validation regular expressions for time configs (Scott Duckworth)
- update ripienaar/concat -> puppetlabs/concat (Joshua Hoblitt)
- Fix issue with validator when disable_ssl = true (Elliott Barrere)
- Enable soft_write_failure setting when $puppetdb::disablessl = true (Elliott Barrere)
- Support rspec-puppet v1.0.0 (Garrett Honeycutt)
- Pin rspec-puppet to 1.x releases (Ken Barber)
- Define parameter in puppetdb class to define postgres listen address (Adrian Lopez)
- Enable fast finish in Travis (Garrett Honeycutt)
- Convert tests to beaker (Ashley Penney)
- Use the /v2 metrics endpoint instead of /metrics (Ken Barber)
3.0.0 - 2013/10/27
This major release changes the main dependency for the postgresql module from version 2.5.x to 3.x. Since the postgresql module is not backwards compatible, this release is also not backwards compatible. As a consequence we have taken some steps to deprecate some of the older functionality:
- The parameter manage_redhat_firewall for the class puppetdb has now been removed completely in favor of open_postgres_port and open_ssl_listen_port.
- The parameter manage_redhat_firewall for the class puppetdb::database::postgresql, has now been renamed to manage_firewall.
- The parameter manage_redhat_firewall for the class puppetdb::server has now been removed completely in favor of open_listen_port and open_ssl_listen_port.
- The internal class: puppetdb::database::postgresql_db has been removed. If you were using this, it is now defunct.
- The class puppetdb::server::firewall has been marked as private, do not use it directly.
- The class puppetdb::server::jetty_ini and puppetdb::server::database_ini have been marked as private, do not use it directly.
All of this is documented in the upgrade portion of the README.
Additionally some features have been included in this release as well:
- soft_write_failure can now be enabled in your puppetdb.conf with this module to handle failing silently when your PuppetDB is not available during writes.
- There is a new switch to enable SSL connectivity to PostgreSQL. While this functionality is only in its infancy this is a good start.
Detailed Changes:
- FM-103: Add metadata.json to all modules. (Ashley Penney)
- Add soft_write_failure to puppetdb.conf (Garrett Honeycutt)
- Add switch to configure database SSL connection (Stefan Dietrich)
- (GH-91) Update to use rspec-system-puppet 2.x (Ken Barber)
- (GH-93) Switch to using puppetlabs-postgresql 3.x (Ken Barber)
- Fix copyright and project notice (Ken Barber)
- Adjust memory for PuppetDB tests to avoid OOM killer (Ken Barber)
- Ensure ntpdate executes early during testing (Ken Barber)
2.0.0 - 2013/10/04
This major release changes the main dependency for the inifile module from
the deprecated cprice404/inifile
to puppetlabs/inifile
to remove
deprecation warnings and to move onto the latest and greatest implementation
of that code.
Its a major release, because it may affect other dependencies since modules cannot have overlapping second part dependencies (that is inifile cannot be from two different locations).
It also adds the parameter puppetdb_service_status
to the class puppetdb
to
allow users to specify whether the module manages the puppetdb service for you.
The database_password
parameter is now optional, and initial Arch Linux
support has been added.
Detailed Changes:
- (GH-73) Switch to puppetlabs/inifile from cprice/inifile (Ken Barber)
- Make database_password an optional parameter (Nick Lewis)
- add archlinux support (Niels Abspoel)
- Added puppetdb service control (Akos Hencz)
1.6.0 - 2013/08/07
This minor feature release provides extra parameters for new configuration items available in PuppetDB 1.4, and also provides some older parameters that were missed previously:
- gc_interval
- log_slow_statements
- conn_max_age
- conn_keep_alive
- conn_lifetime
Consult the README.md file, or the PuppetDB documentation for more details.
1.5.0 - 2013/07/18
This minor feature release provides the following new functionality:
- The module is now capable of managing PuppetDB on SUSE systems for which PuppetDB packages are available
- The ruby code for validating the PuppetDB connection now supports validating on a non-SSL HTTP port.
1.4.0 - 2013/05/13
This feature release provides support for managing the puppetdb report processor on your master.
To enable the report processor, you can do something like this:
class { 'puppetdb::master::config':
manage_report_processor => true,
enable_reports => true
}
This will add the 'puppetdb' report processor to the list of reports
inside your master's puppet.conf
file.
1.3.0 - 2013/05/13
This feature release provides us with a few new features for the PuppetDB module.
You can now disable SSL when using the puppetdb
class by using the new
parameter disable_ssl
:
class { 'puppetdb':
disable_ssl => true,
}
This will remove the SSL settings from your jetty.ini
configuration file
disabling any SSL communication. This is useful when you want to offload SSL
to another web server, such as Apache or Nginx.
We have now added an option java_args
for passing in Java options to
PuppetDB. The format is a hash that is passed in when declaring the use of the
puppetdb
class:
class { 'puppetdb':
java_args => {
'-Xmx' => '512m',
'-Xms' => '256m',
}
}
Also, the default report-ttl
was set to 14d
in PuppetDB to align it with an
upcoming PE release, so we've also reflected that default here now.
And finally we've fixed the issue whereby the options report_ttl
, node_ttl
,
node_purge_ttl
and gc_interval
were not making the correct changes. On top
of that you can now set these values to zero in the module, and the correct
time modifier (s
, m
, h
etc.) will automatically get applied for you.
Behind the scenes we've also added system and unit testing, which was previously non-existent. This should help us reduce regression going forward.
Thanks to all the contributing developers in the list below that made this release possible :-).
Changes
- Allows for 0 _ttl's without time signifier and enables tests (Garrett Honeycutt)
- Add option to disable SSL in Jetty, including tests and documentation (Christian Berg)
- Cleaned up ghoneycutt's code a tad (Ken Barber)
- the new settings report_ttl, node_ttl and node_purge_ttl were added but they are not working, this fixes it (fsalum)
- Also fix gc_interval (Ken Barber)
- Support for remote puppetdb (Filip Hrbek)
- Added support for Java VM options (Karel Brezina)
- Add initial rspec-system tests and scaffolding (Ken Barber)
1.2.1 - 2013/04/08
This is a minor bugfix that solves the PuppetDB startup exception:
java.lang.AssertionError: Assert failed: (string? s)
This was due to the default node-ttl
and node-purge-ttl
settings not having a time suffix by default. These settings required 's', 'm', 'd' etc. to be suffixed, even if they are zero.
Changes
- (Ken Barber) Add 's' suffix to period settings to avoid exceptions in PuppetDB
1.2.0 - 2013/04/05
This release is primarily about providing full configuration file support in the module for PuppetDB 1.2.0. (The alignment of version is a coincidence I assure you :-).
This feature release adds the following new configuration parameters to the main puppetdb
class:
- node_ttl
- node_purge_ttl (available in >=1.2.0)
- report_ttl
Consult the README for futher details about these new configurable items.
Changes
- (Nick Lewis) Add params and ini settings for node/purge/report ttls and document them
1.1.5
2013-02-13 - Karel Brezina
- Fix database creation so database_username, database_password and database_name are correctly passed during database creation.
2013-01-29 - Lauren Rother
- Change README to conform to new style and various other README improvements
2013-01-17 - Chris Price
- Improve documentation in init.pp
1.1.4
This is a bugfix release, mostly around fixing backward-compatibility for the
deprecated manage_redhat_firewall
parameter. It wasn't actually entirely
backwards-compatible in the 1.1.3 release.
2013-01-17 - Chris Price chris@puppetlabs.com
- Fix backward compatibility of
manage_redhat_firewall
parameter (de20b44)
2013-01-16 - Chris Price chris@puppetlabs.com
- Fix deprecation warnings around manage_redhat_firewall (448f8bc)
1.1.3
This is mostly a maintenance release, to update the module dependencies to newer versions in preparation for some new features. This release does include some nice additions around the ability to set the listen address for the HTTP port on Jetty and manage the firewall for that port. Thanks very much to Drew Blessing for those submissions!
2013-01-15 - Chris Price chris@puppetlabs.com
- Update Modulefile for 1.1.3 release (updates dependencies on postgres and inifile modules to the latest versions) (76bfd9e)
2012-12-19 - Garrett Honeycutt garrett@puppetlabs.com
- (#18228) updates README for style (fd2e990)
2012-11-29 - Drew Blessing Drew.Blessing@Buckle.com
- 17594 - Fixes suggested by cprice-puppet (0cf9632)
2012-11-14 - Drew Blessing Drew.Blessing@Buckle.com
- Adjust examples in tests to include new port params (0afc276)
2012-11-13 - Drew Blessing Drew.Blessing@Buckle.com
- 17594 - PuppetDB - Add ability to set standard host listen address and open firewall
1.1.2
2012-10-26 - Chris Price chris@puppetlabs.com (1.1.2)
- 1.1.2 release
2012-10-26 - Chris Price chris@puppetlabs.com
- Add some more missing
inherit
s forpuppetdb::params
(a72cc7c)
2012-10-26 - Chris Price chris@puppetlabs.com (1.1.2)
- 1.1.1 release
2012-10-26 - Chris Price chris@puppetlabs.com (1.1.1)
- Add missing
inherit
forpuppetdb::params
(ea9b379)
2012-10-24 - Chris Price chris@puppetlabs.com
- 1.1.0 release
2012-10-24 - Chris Price chris@puppetlabs.com (1.1.0)
- Update postgres dependency to puppetlabs/postgresql (bea79b4)
2012-10-17 - Reid Vandewiele reid@puppetlabs.com (1.1.0)
- Fix embedded db setup in Puppet Enterprise (bf0ab45)
2012-10-17 - Chris Price chris@puppetlabs.com (1.1.0)
- Update manifests/master/config.pp (b119a30)
2012-10-16 - Chris Price chris@puppetlabs.com (1.1.0)
- Make puppetdb startup timeout configurable (783b595)
2012-10-01 - Hunter Haugen h.haugen@gmail.com (1.1.0)
- Add condition to detect PE installations and provide different parameters (63f1c52)
2012-10-01 - Hunter Haugen h.haugen@gmail.com (1.1.0)
- Add example manifest code for pe puppet master (a598edc)
2012-10-01 - Chris Price chris@puppetlabs.com (1.1.0)
- Update comments and docs w/rt PE params (b5df5d9)
2012-10-01 - Hunter Haugen h.haugen@gmail.com (1.1.0)
- Adding pe_puppetdb tests class (850e039)
2012-09-28 - Hunter Haugen h.haugen@gmail.com (1.1.0)
- Add parameters to enable usage of enterprise versions of PuppetDB (df6f7cc)
2012-09-23 - Chris Price chris@puppetlabs.com
- 1.0.3 release
2012-09-23 - Chris Price chris@puppetlabs.com
- Add a parameter for restarting puppet master (179b337)
2012-09-21 - Chris Price chris@puppetlabs.com
- 1.0.2 release
2012-09-21 - Chris Price chris@puppetlabs.com
- Pass 'manage_redhat_firewall' param through to postgres (f21740b)
2012-09-20 - Chris Price chris@puppetlabs.com
- 1.0.1 release
2012-09-20 - Garrett Honeycutt garrett@puppetlabs.com
- complies with style guide (1aab5d9)
2012-09-19 - Chris Price chris@puppetlabs.com
- Fix invalid subname in database.ini (be683b7)
2011-09-18 Chris Price chris@puppetlabs.com - 1.0.0
- Initial 1.0.0 release
Dependencies
- puppetlabs/inifile (>= 1.1.3 < 7.0.0)
- puppetlabs/postgresql (>= 6.5.0 < 10.0.0)
- puppetlabs/firewall (>= 1.1.3 < 7.0.0)
- puppetlabs/stdlib (>= 4.13.1 < 10.0.0)
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.