Puppet Class: st2::profile::redis

Inherits:
st2
Defined in:
manifests/profile/redis.pp

Summary

StackStorm compatable installation of Redis.

Overview

Examples:

Basic Usage

include st2::profile::redis

Install with redis

class { 'st2::profile::redis':
   bind_ip => '127.0.0.1',
 }

Parameters:

  • bind_ip (String) (defaults to: $st2::redis_bind_ip)

    Bind IP of the Redis server. Default is 127.0.0.1



14
15
16
17
18
19
20
21
22
23
# File 'manifests/profile/redis.pp', line 14

class st2::profile::redis (
  String  $bind_ip = $st2::redis_bind_ip,
) inherits st2 {

  class { 'redis':
      bind => $bind_ip,
  }

  contain redis
}