GitHub puppet-redis
Puppet Module to manage Redis

Repo Checks ( 17 of 20 successfull )
Metadata Valid
No translation
passed
Correct Puppet Version Range
Supported Puppet version range is %{PUPPET_SUPPORT_RANGE}
passed
With Puppet Version Range
Puppet version range is present in requirements in metadata.json
passed
With Operatingsystem Support
No translation
passed
Operatingsystems
No translation
passed
Supports Only Current Debian
No translation
failed
Supports Latest Debian
No translation
passed
Supports Only Current Ubuntu
No translation
passed
Supports Latest Ubuntu
No translation
failed
Supports Only Current Redhat
No translation
passed
Supports Latest Redhat
No translation
passed
Supports Only Current Centos
No translation
passed
Supports Latest Centos
No translation
passed
In Modulesync Repo
Is listed as a module managed using modulesync_config
passed
Synced
Has a .msync.yml file
passed
Latest Modulesync
Has been synchronized with the latest tagged version of modulesync_config
failed
Has Modulesync
Is present in voxpupuli/modulesync_config/managed_modules.yml
passed
Released
Is in modulesync_config and in forge releases.
passed
Valid Sync File
If a (optional) sync file is present, it must not contain a `.travis.yml` entry.
passed
Reference Dot Md
The repository has a REFERENCE.md. It needs to be generated / puppet-strings documentation is missing.
passed

Open Pull Requests

add sentinel multi monitor
merge-conflicts
backwards-incompatible

Pull Request (PR) description

After multi instance was added we should let redis-sentinel watch over these instances

This Pull Request (PR) add following features and fixes the following issues

  • multi instance support for redis-sentinel

This will close following Issues:
Close #319
Close #223

Open PR in GitHub
Make it possible to install sentinel independently
merge-conflicts
needs-tests

Pull Request (PR) description

This PR introduces the possibility to install redis::sentinel standalone, without redis::server. It comes in handy when you need your sentinels to be for example on a different node than your redis server.

The change itself is a pretty straightforward, I am just adding a require_redis parameter, that makes the requirement of redis class conditional. The default value is true, which includes the redis and it is therefore backward compatible with the current setup.

The only downside of this approach I see currently is that in case someone needs a standalone redis-sentinel from a managed repository, the repository must be added manually as the redis::preinstall is no longer included (as was previously with the redis class)

This Pull Request (PR) fixes the following issues

  • installation of standalone sentinel (no open issue for this one, so far)

Thank you for any input :)

Open PR in GitHub
redis::instance: do not exec cp if source and destination are equal
merge-conflicts

Pull Request (PR) description

Avoid using this copy with destination and source beeing equal

Remark: generally it's a bad idea to use an exec statement to copy a file. Since this way we cannot see diffs etc.
A better way would be to use a file{ $destination: source=> $source} statement, but running with noop makes it fail then !

Open PR in GitHub
Added replicaof parameter

Signed-off-by: Martin KolacĂ­ martin.kolaci@lmc.eu

<!--
Thank you for contributing to this project!

-->

Pull Request (PR) description

Added replicaof parameter in config

This Pull Request (PR) fixes the following issues

Fixes #401

Open PR in GitHub
modulesync 5.4.0
modulesync

modulesync 5.4.0

Open PR in GitHub
fix FreeBSD support

<!--
Thank you for contributing to this project!

-->

Pull Request (PR) description

Avoid systemd-related code when running on non-Linux operating systems.

This Pull Request (PR) fixes the following issues

No issue found, just noticed that FreeBSD support is broken.

Open PR in GitHub
Add Debian 12 support
enhancement

<!--
Thank you for contributing to this project!

-->

Pull Request (PR) description

<!--
Replace this comment with a description of your pull request.
-->

This Pull Request (PR) fixes the following issues

<!--
Replace this comment with the list of issues or n/a.
Use format:
Fixes #123
Fixes #124
-->

Open PR in GitHub
Rdb save incremental fsync
needs-tests
needs-work

Pull Request (PR) description

minor change to the redis.conf EPP template to make it possible to disable rdb_save_incremental_fsync

This Pull Request (PR) fixes the following issues

Fixes #494

Open PR in GitHub
Run Unit tests on CERN runners

<!--
Thank you for contributing to this project!

-->

Pull Request (PR) description

<!--
Replace this comment with a description of your pull request.
-->

This Pull Request (PR) fixes the following issues

<!--
Replace this comment with the list of issues or n/a.
Use format:
Fixes #123
Fixes #124
-->

Open PR in GitHub
Support rich datatypes and deferred password values
bug

Pull Request (PR) description

Process the configuration file redis.conf template twice if some of the templates values are deferred.

Currently with deferred values the resulting deferred template cannot be processed since it contains
complex datatypes from stdlib in particular.

This is a redis specific solution that may arrive generally one day in https://github.com/puppetlabs/puppetlabs-stdlib/pull/1425

This Pull Request (PR) fixes the following issues

Fixes #513

Open PR in GitHub