Puppet module to deploy redis
Go to file
Ian Wienand 5d82a68b06 Replace openstack.org git:// URLs with https://
This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.

This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.

This update should result in no functional change.

For more information see the thread at

 http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html

Change-Id: I75f6b9fa4541dc79f392597a0733d35949782c50
2019-03-24 20:35:45 +00:00
manifests Add Xenial support 2018-07-11 10:43:00 +02:00
spec/acceptance Add beaker tests 2018-07-11 14:17:45 +02:00
templates Add Xenial support 2018-07-11 10:43:00 +02: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 Update Gemfile for Zuulv3 2018-07-12 09:57:45 +02: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 openstack.org git:// URLs with https:// 2019-03-24 20:35:45 +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.