puppetlabs-puppetdb
puppetlabs-puppetdb copied to clipboard
A puppet module for installing and managing puppetdb
in case you need something else than 0.0.0.0/0, for example ::/0.
We're using some additional puppet-lint checks (`absolute_classname` and `trailing_comma`) in our environment that were failing. This MR adds those checks, and fixes the errors.
Make sure puppetdb.conf contains correct entries depending on the terminus version
Seeing this error with custom port: ``` Error: /Stage[main]/Puppetdb::Database::Postgresql/Postgresql::Server::Extension[pg_trgm]/Postgresql_psql[Add pg_trgm extension to puppetdb]: Could not evaluate: Error evaluating 'unless' clause, returned pid 26843 exit 2: 'psql: FATAL: database "puppetdb" does...
According to the [docs](https://puppet.com/docs/puppetdb/7/configure_postgres.html) you should specify the encoding when creating the database. The database encoding will be set depending on your locale (I got LATIN1) unless specified. I am...
The puppetdb user doesn't need to write to the config (it's managed by Puppet after all) so setting the owner to root and using the group to only read is...
Could support for puppetlabs-postgresql version 10 be added? In the latest version of puppetlabs-puppetdb 7.14.0, versions < 10.0.0 are supported. I'd like to use Puppet 8 - which is supported...
Currently these tests are using vagrant/virtualbox, and they are pretty slow and running on a custom host. I want to be able to convert these to use the PL vsphere...
When trying to use this module it complains due to not being able to install pe-puppetdb and pe-puppetdb-terminus. I think the problem is this line in params.pp: ``` if $::is_pe...
## Describe the Bug Automatic setup of PostgreSQL does not work unless an updated version is specified ## Expected Behavior Minimal install works: ```puppet class { 'puppetdb': } ``` ##...