Puppet module to deploy redis
Go to file
Andrey Nikitin 036ea2c163 Order of the class parameters is refactored
Order and intendation of those parameters are changed
to follow Puppet Style Guide recommendation [0].
Moreover, it will allow to an user to find much faster
a variable in a list of variables.

[0]. https://docs.puppetlabs.com/guides/style_guide.html

Change-Id: I1026ad3b5072128a92ada761123bd21a4cdd4058
2016-03-21 18:16:28 +03:00
manifests Order of the class parameters is refactored 2016-03-21 18:16:28 +03:00
spec Fix target path for regular git clone during tests 2015-08-19 16:41:24 -07:00
templates Add Gemfile and puppet 4 checks 2015-08-13 16:52:15 -07:00
.gitignore Add Gemfile and puppet 4 checks 2015-08-13 16:52:15 -07:00
.gitreview Add standard puppet module files and .gitreview 2015-01-28 19:39:44 +01:00
Gemfile Add Gemfile and puppet 4 checks 2015-08-13 16:52:15 -07:00
LICENSE Add missing LICENSE file 2015-01-29 22:59:26 +00:00
README.md Add standard puppet module files and .gitreview 2015-01-28 19:39:44 +01:00
Rakefile Add standard puppet module files and .gitreview 2015-01-28 19:39:44 +01:00
metadata.json Replace ci.o.o links with docs.o.o/infra 2015-05-14 21:38:18 +00:00

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.