Puppet module to deploy redis
4ffde807e4
This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have. |
||
---|---|---|
manifests | ||
spec/acceptance | ||
templates | ||
.gitignore | ||
.gitreview | ||
Gemfile | ||
LICENSE | ||
metadata.json | ||
Rakefile | ||
README.md |
OpenStack Redis Module
Marton Kiss marton.kiss@gmail.com Sebastian Marcet smarcet@gmail.com
Quick Start
To install Redis server and configure it with defaults, include the following in your manifest file:
class { 'redis':
}
Configuration
This module supports redis version 2.2.x, 2.4.x and 2.6.x on Ubuntu Operation Systems.
Redis server
class { 'redis':
redis_port => '6379',
redis_bind => '127.0.0.1',
redis_password => 'mys3cr3tpassw0rd',
redis_max_memory => '1gb',
version => '2.2.12',
}
NOTE: you must specify the package version number, because the configuration templates are different for major redis versions.