diff --git a/REFERENCE.md b/REFERENCE.md index 2b2860a..2ef6df2 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -1,2073 +1,2090 @@ # Reference ## Table of Contents **Classes** _Public Classes_ * [`redis`](#redis): This class installs redis * [`redis::administration`](#redisadministration): Allows various adminstrative settings for Redis As documented in the FAQ and https://redis.io/topics/admin +* [`redis::globals`](#redisglobals): Set a global config for Redis * [`redis::sentinel`](#redissentinel): Install redis-sentinel _Private Classes_ * `redis::config`: This class provides configuration for Redis. * `redis::install`: This class installs the application. * `redis::params`: This class provides a number of parameters. * `redis::preinstall`: Provides anything required by the install class, such as package repositories. * `redis::service`: This class manages the Redis daemon. * `redis::ulimit`: Redis class for configuring ulimit Used to DRY up the config class, and move the logic for ulimit changes all into one place. Parameters are **Defined types** * [`redis::instance`](#redisinstance): Allows the configuration of multiple redis configurations on one machine **Functions** * [`redis::get`](#redisget): Returns the value of the key being looked up or `undef` if the key does not exist. Takes two arguments with an optional third. The first bein **Data types** * [`Redis::LogLevel`](#redisloglevel): Specify the server verbosity level. * [`Redis::RedisUrl`](#redisredisurl): **Tasks** * [`redis_cli`](#redis_cli): Executes a redis-cli command on the target system ## Classes ### redis This class installs redis #### Examples ##### Default install ```puppet include redis ``` ##### Slave Node ```puppet class { '::redis': bind => '10.0.1.2', slaveof => '10.0.1.1 6379', } ``` ##### Binding on multiple interfaces ```puppet class { 'redis': bind => ['127.0.0.1', '10.0.0.1', '10.1.0.1'], } ``` ##### Binding on all interfaces ```puppet class { 'redis': bind => [], } ``` #### Parameters The following parameters are available in the `redis` class. ##### `activerehashing` Data type: `Boolean` Enable/disable active rehashing. Default value: `true` ##### `aof_load_truncated` Data type: `Boolean` Enable/disable loading truncated AOF file Default value: `true` ##### `aof_rewrite_incremental_fsync` Data type: `Boolean` Enable/disable fsync for AOF file Default value: `true` ##### `appendfilename` Data type: `String[1]` The name of the append only file Default value: 'appendonly.aof' ##### `appendfsync` Data type: `Enum['no', 'always', 'everysec']` Adjust fsync mode Default value: 'everysec' ##### `appendonly` Data type: `Boolean` Enable/disable appendonly mode. Default value: `false` ##### `auto_aof_rewrite_min_size` Data type: `String[1]` Adjust minimum size for auto-aof-rewrite. Default value: '64mb' ##### `auto_aof_rewrite_percentage` Data type: `Integer[0]` Adjust percentatge for auto-aof-rewrite. Default value: 100 ##### `bind` Data type: `Variant[Stdlib::IP::Address, Array[Stdlib::IP::Address]]` Configure which IP address(es) to listen on. To bind on all interfaces, use an empty array. Default value: ['127.0.0.1'] ##### `config_dir` Data type: `Stdlib::Absolutepath` Directory containing the configuration files. Default value: $redis::params::config_dir ##### `config_dir_mode` Data type: `Stdlib::Filemode` Adjust mode for directory containing configuration files. Default value: $redis::params::config_dir_mode ##### `config_file_orig` Data type: `Stdlib::Absolutepath` The location and name of a config file that provides the source Default value: $redis::params::config_file_orig ##### `config_file` Data type: `Stdlib::Absolutepath` Adjust main configuration file. Default value: $redis::params::config_file ##### `config_file_mode` Data type: `Stdlib::Filemode` Adjust permissions for configuration files. Default value: '0644' ##### `config_group` Data type: `String[1]` Adjust filesystem group for config files. Default value: $redis::params::config_group ##### `config_owner` Data type: `String[1]` Adjust filesystem owner for config files. Default value: $redis::params::config_owner ##### `conf_template` Data type: `String[1]` Define which template to use. Default value: 'redis/redis.conf.erb' ##### `daemonize` Data type: `Boolean` Have Redis run as a daemon. Default value: $redis::params::daemonize ##### `default_install` Data type: `Boolean` Configure a default install of redis. Default value: `true` ##### `databases` Data type: `Integer[1]` Set the number of databases. Default value: 16 ##### `dbfilename` Data type: `Variant[String[1], Boolean]` The filename where to dump the DB Default value: 'dump.rdb' ##### `extra_config_file` Data type: `Optional[String]` Optional extra config file to include Default value: `undef` ##### `hash_max_ziplist_entries` Data type: `Integer[0]` Set max ziplist entries for hashes. Default value: 512 ##### `hash_max_ziplist_value` Data type: `Integer[0]` Set max ziplist values for hashes. Default value: 64 ##### `hll_sparse_max_bytes` Data type: `Integer[0]` HyperLogLog sparse representation bytes limit Default value: 3000 ##### `hz` Data type: `Integer[1, 500]` Set redis background tasks frequency Default value: 10 ##### `latency_monitor_threshold` Data type: `Integer[0]` Latency monitoring threshold in milliseconds Default value: 0 ##### `list_max_ziplist_entries` Data type: `Integer[0]` Set max ziplist entries for lists. Default value: 512 ##### `list_max_ziplist_value` Data type: `Integer[0]` Set max ziplist values for lists. Default value: 64 ##### `log_dir` Data type: `Stdlib::Absolutepath` Specify directory where to write log entries. Default value: '/var/log/redis' ##### `log_dir_mode` Data type: `Stdlib::Filemode` Adjust mode for directory containing log files. Default value: $redis::params::log_dir_mode ##### `log_file` Data type: `Stdlib::Absolutepath` Specify file where to write log entries. Default value: '/var/log/redis/redis.log' ##### `log_level` Data type: `Redis::LogLevel` Specify the server verbosity level. Default value: 'notice' ##### `manage_repo` Data type: `Boolean` Enable/disable upstream repository configuration. Default value: `false` ##### `manage_package` Data type: `Boolean` Enable/disable management of package Default value: `true` ##### `managed_by_cluster_manager` Data type: `Boolean` Choose if redis will be managed by a cluster manager such as pacemaker or rgmanager Default value: `false` ##### `masterauth` Data type: `Optional[String[1]]` If the master is password protected (using the "requirepass" configuration Default value: `undef` ##### `maxclients` Data type: `Integer[1]` Set the max number of connected clients at the same time. Default value: 10000 ##### `maxmemory` Data type: `Any` Don't use more memory than the specified amount of bytes. Default value: `undef` ##### `maxmemory_policy` Data type: `Any` How Redis will select what to remove when maxmemory is reached. Default value: `undef` ##### `maxmemory_samples` Data type: `Any` Select as well the sample size to check. Default value: `undef` ##### `min_slaves_max_lag` Data type: `Integer[0]` The lag in seconds Default value: 10 ##### `min_slaves_to_write` Data type: `Integer[0]` Minimum number of slaves to be in "online" state Default value: 0 ##### `no_appendfsync_on_rewrite` Data type: `Boolean` If you have latency problems turn this to 'true'. Otherwise leave it as Default value: `false` ##### `notify_keyspace_events` Data type: `Optional[String[1]]` Which events to notify Pub/Sub clients about events happening Default value: `undef` ##### `notify_service` Data type: `Boolean` You may disable service reloads when config files change if you Default value: `true` ##### `package_ensure` Data type: `String[1]` Default action for package. Default value: 'present' ##### `package_name` Data type: `String[1]` Upstream package name. Default value: $redis::params::package_name ##### `pid_file` Data type: `Stdlib::Absolutepath` Where to store the pid. Default value: $redis::params::pid_file ##### `port` Data type: `Stdlib::Port` Configure which port to listen on. Default value: 6379 ##### `protected_mode` Data type: `Boolean` Whether protected mode is enabled or not. Only applicable when no bind is set. Default value: `true` ##### `ppa_repo` Data type: `Optional[String]` Specify upstream (Ubuntu) PPA entry. Default value: $redis::params::ppa_repo ##### `rdbcompression` Data type: `Boolean` Enable/disable compression of string objects using LZF when dumping. Default value: `true` ##### `repl_backlog_size` Data type: `String[1]` The replication backlog size Default value: '1mb' ##### `repl_backlog_ttl` Data type: `Integer[0]` The number of seconds to elapse before freeing backlog buffer Default value: 3600 ##### `repl_disable_tcp_nodelay` Data type: `Boolean` Enable/disable TCP_NODELAY on the slave socket after SYNC Default value: `false` ##### `repl_ping_slave_period` Data type: `Integer[1]` Slaves send PINGs to server in a predefined interval. It's possible Default value: 10 ##### `repl_timeout` Data type: `Integer[1]` Set the replication timeout for: Default value: 60 ##### `requirepass` Data type: `Optional[String]` Require clients to issue AUTH before processing any other commands. Default value: `undef` ##### `save_db_to_disk` Data type: `Boolean` Set if save db to disk. Default value: `true` ##### `save_db_to_disk_interval` Data type: `Hash` save the dataset every N seconds if there are at least M changes in the dataset Default value: {'900' =>'1', '300' => '10', '60' => '10000'} ##### `service_manage` Data type: `Boolean` Specify if the service should be part of the catalog. Default value: `true` ##### `service_enable` Data type: `Boolean` Enable/disable daemon at boot. Default value: `true` ##### `service_ensure` Data type: `Stdlib::Ensure::Service` Specify if the server should be running. Default value: 'running' ##### `service_group` Data type: `String[1]` Specify which group to run as. Default value: 'redis' ##### `service_hasrestart` Data type: `Boolean` Does the init script support restart? Default value: `true` ##### `service_hasstatus` Data type: `Boolean` Does the init script support status? Default value: `true` ##### `service_name` Data type: `String[1]` Specify the service name for Init or Systemd. Default value: $redis::params::service_name ##### `service_provider` Data type: `Optional[String]` Specify the service provider to use Default value: `undef` ##### `service_user` Data type: `String[1]` Specify which user to run as. Default value: 'redis' ##### `set_max_intset_entries` Data type: `Integer[0]` The following configuration setting sets the limit in the size of the set in order to use this special memory saving encoding. Default value: 512 ##### `slave_priority` Data type: `Integer[0]` The priority number for slave promotion by Sentinel Default value: 100 ##### `slave_read_only` Data type: `Boolean` You can configure a slave instance to accept writes or not. Default value: `true` ##### `slave_serve_stale_data` Data type: `Boolean` When a slave loses its connection with the master, or when the replication is still in progress, the slave can act in two different ways: 1) if slave-serve-stale-data is set to 'yes' (the default) the slave will still reply to client requests, possibly with out of date data, or the data set may just be empty if this is the first synchronization. 2) if slave-serve-stale-data is set to 'no' the slave will reply with an error "SYNC with master in progress" to all the kind of commands but to INFO and SLAVEOF. Default value: `true` ##### `slaveof` Data type: `Optional[String[1]]` Use slaveof to make a Redis instance a copy of another Redis server. Default value: `undef` ##### `slowlog_log_slower_than` Data type: `Integer[0]` Tells Redis what is the execution time, in microseconds, to exceed in order for the command to get logged. Default value: 10000 ##### `slowlog_max_len` Data type: `Integer[0]` Tells Redis what is the length to exceed in order for the command to get logged. Default value: 1024 ##### `stop_writes_on_bgsave_error` Data type: `Boolean` If false then Redis will continue to work as usual even if there are problems with disk, permissions, and so forth. Default value: `true` ##### `syslog_enabled` Data type: `Boolean` Enable/disable logging to the system logger. Default value: `false` ##### `syslog_facility` Data type: `Optional[String[1]]` Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7. Default value: `undef` ##### `tcp_backlog` Data type: `Integer[0]` Sets the TCP backlog Default value: 511 ##### `tcp_keepalive` Data type: `Integer[0]` TCP keepalive. Default value: 0 ##### `timeout` Data type: `Integer[0]` Close the connection after a client is idle for N seconds (0 to disable). Default value: 0 ##### `ulimit` Data type: `Integer[0]` Limit the use of system-wide resources. Default value: 65536 ##### `unixsocket` Data type: `Variant[Stdlib::Absolutepath, Enum['']]` Define unix socket path Default value: '/var/run/redis/redis.sock' ##### `unixsocketperm` Data type: `Variant[Stdlib::Filemode, Enum['']]` Define unix socket file permissions Default value: '0755' ##### `workdir` Data type: `Stdlib::Absolutepath` The DB will be written inside this directory, with the filename specified above using the 'dbfilename' configuration directive. Default value: $redis::params::workdir ##### `workdir_mode` Data type: `Stdlib::Filemode` Adjust mode for data directory. Default value: '0750' ##### `zset_max_ziplist_entries` Data type: `Integer[0]` Set max entries for sorted sets. Default value: 128 ##### `zset_max_ziplist_value` Data type: `Integer[0]` Set max values for sorted sets. Default value: 64 ##### `cluster_enabled` Data type: `Boolean` Enables redis 3.0 cluster functionality Default value: `false` ##### `cluster_config_file` Data type: `String[1]` Config file for saving cluster nodes configuration. This file is never touched by humans. Only set if cluster_enabled is true Default value: 'nodes.conf' ##### `cluster_node_timeout` Data type: `Integer[1]` Node timeout. Only set if cluster_enabled is true Default value: 5000 ##### `cluster_slave_validity_factor` Data type: `Integer[0]` Control variable to disable promoting slave in case of disconnection from master Only set if cluster_enabled is true Default value: 0 ##### `cluster_require_full_coverage` Data type: `Boolean` If false Redis Cluster will server queries even if requests about a subset of keys can be processed Only set if cluster_enabled is true Default value: `true` ##### `cluster_migration_barrier` Data type: `Integer[0]` Minimum number of slaves master will remain connected with, for another slave to migrate to a master which is no longer covered by any slave. Only set if cluster_enabled is true Default value: 1 ##### `instances` Data type: `Hash[String[1], Hash]` Iterate through multiple instance configurations Default value: {} ##### `output_buffer_limit_slave` Data type: `String[1]` Default value: '256mb 64mb 60' ##### `output_buffer_limit_pubsub` Data type: `String[1]` Default value: '32mb 8mb 60' ##### `manage_service_file` Data type: `Boolean` Default value: `false` ### redis::administration Allows various adminstrative settings for Redis As documented in the FAQ and https://redis.io/topics/admin * **See also** https://redis.io/topics/admin #### Examples ##### ```puppet include redis::administration ``` ##### ```puppet class {'redis::administration': disable_thp => false, } ``` #### Parameters The following parameters are available in the `redis::administration` class. ##### `enable_overcommit_memory` Data type: `Boolean` Enable the overcommit memory setting Default value: `true` ##### `disable_thp` Data type: `Boolean` Disable Transparent Huge Pages Default value: `true` ##### `somaxconn` Data type: `Integer[0]` Set somaxconn value Default value: 65535 +### redis::globals + +Set a global config for Redis + +#### Parameters + +The following parameters are available in the `redis::globals` class. + +##### `scl` + +Data type: `Optional[String]` + +Use a specific Software CoLlection on Red Hat based systems + +Default value: `undef` + ### redis::sentinel Install redis-sentinel #### Examples ##### Basic inclusion ```puppet include redis::sentinel ``` ##### Configuring options ```puppet class {'redis::sentinel': down_after => 80000, log_file => '/var/log/redis/sentinel.log', } ``` #### Parameters The following parameters are available in the `redis::sentinel` class. ##### `auth_pass` Data type: `Optional[String[1]]` The password to use to authenticate with the master and slaves. Default value: `undef` ##### `config_file` Data type: `Stdlib::Absolutepath` The location and name of the sentinel config file. Default value: $redis::params::sentinel_config_file ##### `config_file_orig` Data type: `Stdlib::Absolutepath` The location and name of a config file that provides the source of the sentinel config file. Two different files are needed because sentinel itself writes to its own config file and we do not want override that when puppet is run unless there are changes from the manifests. Default value: $redis::params::sentinel_config_file_orig ##### `config_file_mode` Data type: `Stdlib::Filemode` Permissions of config file. Default value: '0644' ##### `conf_template` Data type: `String[1]` Define which template to use. Default value: 'redis/redis-sentinel.conf.erb' ##### `daemonize` Data type: `Boolean` Have Redis sentinel run as a daemon. Default value: $redis::params::sentinel_daemonize ##### `down_after` Data type: `Integer[1]` Number of milliseconds the master (or any attached slave or sentinel) should be unreachable (as in, not acceptable reply to PING, continuously, for the specified period) in order to consider it in S_DOWN state. Default value: 30000 ##### `failover_timeout` Data type: `Integer[1]` Specify the failover timeout in milliseconds. Default value: 180000 ##### `init_script` Data type: `Optional[Stdlib::Absolutepath]` Specifiy the init script that will be created for sentinel. Default value: $redis::params::sentinel_init_script ##### `log_file` Data type: `Stdlib::Absolutepath` Specify where to write log entries. Default value: $redis::params::sentinel_log_file ##### `log_level` Data type: `Redis::LogLevel` Specify how much we should log. Default value: 'notice' ##### `master_name` Data type: `String[1]` Specify the name of the master redis server. The valid charset is A-z 0-9 and the three characters ".-_". Default value: 'mymaster' ##### `redis_host` Data type: `Stdlib::Host` Specify the bound host of the master redis server. Default value: '127.0.0.1' ##### `redis_port` Data type: `Stdlib::Port` Specify the port of the master redis server. Default value: 6379 ##### `package_name` Data type: `String[1]` The name of the package that installs sentinel. Default value: $redis::params::sentinel_package_name ##### `package_ensure` Data type: `String[1]` Do we ensure this package. Default value: 'present' ##### `parallel_sync` Data type: `Integer[0]` How many slaves can be reconfigured at the same time to use a new master after a failover. Default value: 1 ##### `pid_file` Data type: `Stdlib::Absolutepath` If sentinel is daemonized it will write its pid at this location. Default value: $redis::params::sentinel_pid_file ##### `quorum` Data type: `Integer[1]` Number of sentinels that must agree that a master is down to signal sdown state. Default value: 2 ##### `sentinel_bind` Data type: `Variant[Undef, Stdlib::IP::Address, Array[Stdlib::IP::Address]]` Allow optional sentinel server ip binding. Can help overcome issues arising from protect-mode added Redis 3.2 Default value: `undef` ##### `sentinel_port` Data type: `Stdlib::Port` The port of sentinel server. Default value: 26379 ##### `service_group` Data type: `String[1]` The group of the config file. Default value: 'redis' ##### `service_name` Data type: `String[1]` The name of the service (for puppet to manage). -Default value: 'redis-sentinel' +Default value: $redis::params::sentinel_service_name ##### `service_user` Data type: `String[1]` The owner of the config file. Default value: 'redis' ##### `service_enable` Data type: `Boolean` Enable the service at boot time. Default value: `true` ##### `working_dir` Data type: `Stdlib::Absolutepath` The directory into which sentinel will change to avoid mount conflicts. Default value: $redis::params::sentinel_working_dir ##### `notification_script` Data type: `Optional[Stdlib::Absolutepath]` Path to the notification script Default value: `undef` ##### `client_reconfig_script` Data type: `Optional[Stdlib::Absolutepath]` Path to the client-reconfig script Default value: `undef` ##### `init_template` Data type: `String[1]` Default value: 'redis/redis-sentinel.init.erb' ##### `service_ensure` Data type: `Stdlib::Ensure::Service` Default value: 'running' ## Defined types ### redis::instance This is an defined type to allow the configuration of multiple redis instances on one machine without conflicts #### Examples ##### ```puppet redis::instance {'6380': port => 6380, } ``` #### Parameters The following parameters are available in the `redis::instance` defined type. ##### `activerehashing` Data type: `Boolean` Enable/disable active rehashing. Default value: $redis::activerehashing ##### `aof_load_truncated` Data type: `Boolean` Enable/disable loading truncated AOF file Default value: $redis::aof_load_truncated ##### `aof_rewrite_incremental_fsync` Data type: `Boolean` Enable/disable fsync for AOF file Default value: $redis::aof_rewrite_incremental_fsync ##### `appendfilename` Data type: `String[1]` The name of the append only file Default value: $redis::appendfilename ##### `appendfsync` Data type: `Enum['no', 'always', 'everysec']` Adjust fsync mode. Valid options: always, everysec, no. Default value: $redis::appendfsync ##### `appendonly` Data type: `Boolean` Enable/disable appendonly mode. Default value: $redis::appendonly ##### `auto_aof_rewrite_min_size` Data type: `String[1]` Adjust minimum size for auto-aof-rewrite. Default value: $redis::auto_aof_rewrite_min_size ##### `auto_aof_rewrite_percentage` Data type: `Integer[0]` Adjust percentatge for auto-aof-rewrite. Default value: $redis::auto_aof_rewrite_percentage ##### `bind` Data type: `Variant[Stdlib::IP::Address, Array[Stdlib::IP::Address]]` Configure which IP address(es) to listen on. To bind on all interfaces, use an empty array. Default value: $redis::bind ##### `config_file_orig` Data type: `Stdlib::Absolutepath` The location and name of a config file that provides the source Default value: $redis::config_file_orig ##### `config_file` Data type: `Stdlib::Absolutepath` Adjust main configuration file. Default value: $redis::config_file ##### `config_file_mode` Data type: `Stdlib::Filemode` Adjust permissions for configuration files. Default value: $redis::config_file_mode ##### `config_group` Data type: `String[1]` Adjust filesystem group for config files. Default value: $redis::config_group ##### `config_owner` Data type: `String[1]` Adjust filesystem owner for config files. Default value: $redis::config_owner ##### `conf_template` Data type: `String[1]` Define which template to use. Default value: $redis::conf_template ##### `daemonize` Data type: `Boolean` Have Redis run as a daemon. Default value: `true` ##### `databases` Data type: `Integer[1]` Set the number of databases. Default value: $redis::databases ##### `dbfilename` Data type: `Variant[String[1], Boolean]` The filename where to dump the DB Default value: $redis::dbfilename ##### `extra_config_file` Data type: `Optional[String]` Optional extra config file to include Default value: $redis::extra_config_file ##### `hash_max_ziplist_entries` Data type: `Integer[0]` Set max ziplist entries for hashes. Default value: $redis::hash_max_ziplist_entries ##### `hash_max_ziplist_value` Data type: `Integer[0]` Set max ziplist values for hashes. Default value: $redis::hash_max_ziplist_value ##### `hll_sparse_max_bytes` Data type: `Integer[0]` HyperLogLog sparse representation bytes limit Default value: $redis::hll_sparse_max_bytes ##### `hz` Data type: `Integer[1, 500]` Set redis background tasks frequency Default value: $redis::hz ##### `latency_monitor_threshold` Data type: `Integer[0]` Latency monitoring threshold in milliseconds Default value: $redis::latency_monitor_threshold ##### `list_max_ziplist_entries` Data type: `Integer[0]` Set max ziplist entries for lists. Default value: $redis::list_max_ziplist_entries ##### `list_max_ziplist_value` Data type: `Integer[0]` Set max ziplist values for lists. Default value: $redis::list_max_ziplist_value ##### `log_dir` Data type: `Stdlib::Absolutepath` Specify directory where to write log entries. Default value: $redis::log_dir ##### `log_dir_mode` Data type: `Stdlib::Filemode` Adjust mode for directory containing log files. Default value: $redis::log_dir_mode ##### `log_file` Data type: `Optional[Stdlib::Absolutepath]` Specify file where to write log entries. Default value: `undef` ##### `log_level` Data type: `Redis::LogLevel` Specify the server verbosity level. Default value: $redis::log_level ##### `masterauth` Data type: `Optional[String[1]]` If the master is password protected (using the "requirepass" configuration Default value: $redis::masterauth ##### `maxclients` Data type: `Integer[1]` Set the max number of connected clients at the same time. Default value: $redis::maxclients ##### `maxmemory` Data type: `Any` Don't use more memory than the specified amount of bytes. Default value: $redis::maxmemory ##### `maxmemory_policy` Data type: `Any` How Redis will select what to remove when maxmemory is reached. Default value: $redis::maxmemory_policy ##### `maxmemory_samples` Data type: `Any` Select as well the sample size to check. Default value: $redis::maxmemory_samples ##### `min_slaves_max_lag` Data type: `Integer[0]` The lag in seconds Default value: $redis::min_slaves_max_lag ##### `min_slaves_to_write` Data type: `Integer[0]` Minimum number of slaves to be in "online" state Default value: $redis::min_slaves_to_write ##### `no_appendfsync_on_rewrite` Data type: `Boolean` If you have latency problems turn this to 'true'. Otherwise leave it as Default value: $redis::no_appendfsync_on_rewrite ##### `notify_keyspace_events` Data type: `Optional[String[1]]` Which events to notify Pub/Sub clients about events happening Default value: $redis::notify_keyspace_events ##### `pid_file` Data type: `Stdlib::Absolutepath` Where to store the pid. Default value: "/var/run/redis/redis-server-${name}.pid" ##### `port` Data type: `Stdlib::Port` Configure which port to listen on. Default value: $redis::port ##### `protected_mode` Data type: `Boolean` Whether protected mode is enabled or not. Only applicable when no bind is set. Default value: $redis::protected_mode ##### `rdbcompression` Data type: `Boolean` Enable/disable compression of string objects using LZF when dumping. Default value: $redis::rdbcompression ##### `repl_backlog_size` Data type: `String[1]` The replication backlog size Default value: $redis::repl_backlog_size ##### `repl_backlog_ttl` Data type: `Integer[0]` The number of seconds to elapse before freeing backlog buffer Default value: $redis::repl_backlog_ttl ##### `repl_disable_tcp_nodelay` Data type: `Boolean` Enable/disable TCP_NODELAY on the slave socket after SYNC Default value: $redis::repl_disable_tcp_nodelay ##### `repl_ping_slave_period` Data type: `Integer[1]` Slaves send PINGs to server in a predefined interval. It's possible Default value: $redis::repl_ping_slave_period ##### `repl_timeout` Data type: `Integer[1]` Set the replication timeout for: Default value: $redis::repl_timeout ##### `requirepass` Data type: `Optional[String]` Require clients to issue AUTH before processing any other commands. Default value: $redis::requirepass ##### `save_db_to_disk` Data type: `Boolean` Set if save db to disk. Default value: $redis::save_db_to_disk ##### `save_db_to_disk_interval` Data type: `Hash` save the dataset every N seconds if there are at least M changes in the dataset Default value: $redis::save_db_to_disk_interval ##### `service_name` Data type: `String[1]` The service name for this instance Default value: "redis-server-${name}" ##### `service_enable` Data type: `Boolean` Enable/disable daemon at boot. Default value: $redis::service_enable ##### `service_ensure` Data type: `Stdlib::Ensure::Service` Specify if the server should be running. Default value: $redis::service_ensure ##### `service_group` Data type: `String[1]` Specify which group to run as. Default value: $redis::service_group ##### `service_hasrestart` Data type: `Boolean` Does the init script support restart? Default value: $redis::service_hasrestart ##### `service_hasstatus` Data type: `Boolean` Does the init script support status? Default value: $redis::service_hasstatus ##### `service_user` Data type: `String[1]` Specify which user to run as. Default value: $redis::service_user ##### `set_max_intset_entries` Data type: `Integer[0]` The following configuration setting sets the limit in the size of the set in order to use this special memory saving encoding. Default value: $redis::set_max_intset_entries ##### `slave_priority` Data type: `Integer[0]` The priority number for slave promotion by Sentinel Default value: $redis::slave_priority ##### `slave_read_only` Data type: `Boolean` You can configure a slave instance to accept writes or not. Default value: $redis::slave_read_only ##### `slave_serve_stale_data` Data type: `Boolean` When a slave loses its connection with the master, or when the replication is still in progress, the slave can act in two different ways: 1) if slave-serve-stale-data is set to 'yes' (the default) the slave will still reply to client requests, possibly with out of date data, or the data set may just be empty if this is the first synchronization. 2) if slave-serve-stale-data is set to 'no' the slave will reply with an error "SYNC with master in progress" to all the kind of commands but to INFO and SLAVEOF. Default value: $redis::slave_serve_stale_data ##### `slaveof` Data type: `Optional[String[1]]` Use slaveof to make a Redis instance a copy of another Redis server. Default value: $redis::slaveof ##### `slowlog_log_slower_than` Data type: `Integer[0]` Tells Redis what is the execution time, in microseconds, to exceed in order for the command to get logged. Default value: $redis::slowlog_log_slower_than ##### `slowlog_max_len` Data type: `Integer[0]` Tells Redis what is the length to exceed in order for the command to get logged. Default value: $redis::slowlog_max_len ##### `stop_writes_on_bgsave_error` Data type: `Boolean` If false then Redis will continue to work as usual even if there are problems with disk, permissions, and so forth. Default value: $redis::stop_writes_on_bgsave_error ##### `syslog_enabled` Data type: `Boolean` Enable/disable logging to the system logger. Default value: $redis::syslog_enabled ##### `syslog_facility` Data type: `Optional[String[1]]` Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7. Default value: $redis::syslog_facility ##### `tcp_backlog` Data type: `Integer[0]` Sets the TCP backlog Default value: $redis::tcp_backlog ##### `tcp_keepalive` Data type: `Integer[0]` TCP keepalive. Default value: $redis::tcp_keepalive ##### `timeout` Data type: `Integer[0]` Close the connection after a client is idle for N seconds (0 to disable). Default value: $redis::timeout ##### `ulimit` Data type: `Integer[0]` Limit the use of system-wide resources. Default value: $redis::ulimit ##### `unixsocket` Data type: `Variant[Stdlib::Absolutepath, Enum['']]` Define unix socket path Default value: "/var/run/redis/redis-server-${name}.sock" ##### `unixsocketperm` Data type: `Variant[Stdlib::Filemode , Enum['']]` Define unix socket file permissions Default value: $redis::unixsocketperm ##### `workdir` Data type: `Stdlib::Absolutepath` The DB will be written inside this directory, with the filename specified above using the 'dbfilename' configuration directive. Default value: "${redis::workdir}/redis-server-${name}" ##### `workdir_mode` Data type: `Stdlib::Filemode` Adjust mode for data directory. Default value: $redis::workdir_mode ##### `zset_max_ziplist_entries` Data type: `Integer[0]` Set max entries for sorted sets. Default value: $redis::zset_max_ziplist_entries ##### `zset_max_ziplist_value` Data type: `Integer[0]` Set max values for sorted sets. Default value: $redis::zset_max_ziplist_value ##### `cluster_enabled` Data type: `Boolean` Enables redis 3.0 cluster functionality Default value: $redis::cluster_enabled ##### `cluster_config_file` Data type: `String[1]` Config file for saving cluster nodes configuration. This file is never touched by humans. Only set if cluster_enabled is true Default value: $redis::cluster_config_file ##### `cluster_node_timeout` Data type: `Integer[1]` Node timeout. Only set if cluster_enabled is true Default value: $redis::cluster_node_timeout ##### `cluster_slave_validity_factor` Data type: `Integer[0]` Control variable to disable promoting slave in case of disconnection from master Only set if cluster_enabled is true Default value: $redis::cluster_slave_validity_factor ##### `cluster_require_full_coverage` Data type: `Boolean` If false Redis Cluster will server queries even if requests about a subset of keys can be processed Only set if cluster_enabled is true Default value: $redis::cluster_require_full_coverage ##### `cluster_migration_barrier` Data type: `Integer[0]` Minimum number of slaves master will remain connected with, for another slave to migrate to a master which is no longer covered by any slave Only set if cluster_enabled is true Default value: $redis::cluster_migration_barrier ##### `output_buffer_limit_slave` Data type: `String[1]` Default value: $redis::output_buffer_limit_slave ##### `output_buffer_limit_pubsub` Data type: `String[1]` Default value: $redis::output_buffer_limit_pubsub ##### `minimum_version` Data type: `String[1]` Default value: $redis::minimum_version ##### `managed_by_cluster_manager` Data type: `Boolean` Default value: $redis::managed_by_cluster_manager ##### `package_ensure` Data type: `String[1]` Default value: $redis::package_ensure ##### `manage_service_file` Data type: `Boolean` Default value: `true` ## Functions ### redis::get Type: Ruby 4.x API Returns the value of the key being looked up or `undef` if the key does not exist. Takes two arguments with an optional third. The first being a string value of the key to be looked up, the second is the URL to the Redis service and the third optional argument is a default value to be used if the lookup fails. example usage ``` $version = redis::get('version.myapp', 'redis://redis.example.com:6379') $version_with_default = redis::get('version.myapp', 'redis://redis.example.com:6379', $::myapp_version) ``` #### `redis::get(String[1] $key, Redis::RedisUrl $url, Optional[String] $default)` Returns the value of the key being looked up or `undef` if the key does not exist. Takes two arguments with an optional third. The first being a string value of the key to be looked up, the second is the URL to the Redis service and the third optional argument is a default value to be used if the lookup fails. example usage ``` $version = redis::get('version.myapp', 'redis://redis.example.com:6379') $version_with_default = redis::get('version.myapp', 'redis://redis.example.com:6379', $::myapp_version) ``` Returns: `Optional[String]` Returns the value of the key from Redis ##### `key` Data type: `String[1]` The key to look up in redis ##### `url` Data type: `Redis::RedisUrl` The endpoint of the Redis instance ##### `default` Data type: `Optional[String]` The value to return if the key is not found or the connection to Redis fails ## Data types ### Redis::LogLevel This can be one of: * debug (a lot of information, useful for development/testing) * verbose (many rarely useful info, but not a mess like the debug level) * notice (moderately verbose, what you want in production probably) * warning (only very important / critical messages are logged) Alias of `Enum['debug', 'verbose', 'notice', 'warning']` ### Redis::RedisUrl The Redis::RedisUrl data type. Alias of `Pattern[/(^redis:\/\/)/]` ## Tasks ### redis_cli Executes a redis-cli command on the target system **Supports noop?** false #### Parameters ##### `command` Data type: `String[1]` The command to run, including all arguments diff --git a/manifests/globals.pp b/manifests/globals.pp new file mode 100644 index 0000000..fd607a7 --- /dev/null +++ b/manifests/globals.pp @@ -0,0 +1,11 @@ +# @summary Set a global config for Redis +# +# @param scl +# Use a specific Software CoLlection on Red Hat based systems +class redis::globals( + Optional[String] $scl = undef, +) { + if $scl and $facts['os']['family'] != 'RedHat' { + fail('SCLs are only supported on the Red Hat OS family') + } +} diff --git a/manifests/params.pp b/manifests/params.pp index 24e5493..8286353 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,166 +1,195 @@ # @summary This class provides a number of parameters. # @api private -class redis::params { +class redis::params inherits redis::globals { case $facts['os']['family'] { 'Debian': { $ppa_repo = 'ppa:chris-lea/redis-server' $config_dir = '/etc/redis' $config_dir_mode = '0755' $config_file = '/etc/redis/redis.conf' $config_file_orig = '/etc/redis/redis.conf.puppet' $config_owner = 'redis' $log_dir_mode = '0755' $package_name = 'redis-server' $pid_file = '/var/run/redis/redis-server.pid' $workdir = '/var/lib/redis' $daemonize = true $service_name = 'redis-server' $sentinel_config_file = '/etc/redis/sentinel.conf' $sentinel_config_file_orig = '/etc/redis/redis-sentinel.conf.puppet' + $sentinel_service_name = 'redis-sentinel' $sentinel_daemonize = true $sentinel_init_script = '/etc/init.d/redis-sentinel' $sentinel_package_name = 'redis-sentinel' $sentinel_pid_file = '/var/run/redis/redis-sentinel.pid' $sentinel_log_file = '/var/log/redis/redis-sentinel.log' $sentinel_working_dir = '/var/lib/redis' case $facts['os']['name'] { 'Ubuntu': { $config_group = 'redis' $minimum_version = $facts['os']['release']['major'] ? { '16.04' => '3.0.5', default => '4.0.9', } } default: { $config_group = 'root' $minimum_version = '3.2.5' } } } 'RedHat': { - $ppa_repo = undef - - $config_dir = '/etc/redis' - $config_dir_mode = '0755' - $config_file = '/etc/redis.conf' - $config_file_orig = '/etc/redis.conf.puppet' - $config_group = 'root' - $config_owner = 'redis' - $log_dir_mode = '0750' - $package_name = 'redis' - $pid_file = $facts['os']['release']['major'] ? { - '6' => '/var/run/redis/redis.pid', - default => '/var/run/redis_6379.pid', + $ppa_repo = undef + $daemonize = false + $config_owner = 'redis' + $config_group = 'root' + $config_dir_mode = '0755' + $log_dir_mode = '0750' + + $sentinel_daemonize = false + $sentinel_init_script = undef + $sentinel_working_dir = '/tmp' + + $scl = $redis::globals::scl + if $scl { + $config_dir = "/etc/opt/rh/${scl}/redis" + $config_file = "/etc/opt/rh/${scl}/redis.conf" + $config_file_orig = "/etc/opt/rh/${scl}/redis.conf.puppet" + $package_name = "${scl}-redis" + $pid_file = "/var/opt/rh/${scl}/run/redis_6379.pid" + $service_name = "${scl}-redis" + $workdir = "/var/opt/rh/${scl}/lib/redis" + + $sentinel_config_file = "${config_dir}/redis-sentinel.conf" + $sentinel_config_file_orig = "${config_dir}/redis-sentinel.conf.puppet" + $sentinel_service_name = "${scl}-redis-sentinel" + $sentinel_package_name = $package_name + $sentinel_pid_file = "/var/opt/rh/${scl}/run/redis-sentinel.pid" + $sentinel_log_file = "/var/opt/rh/${scl}/log/redis/sentinel.log" + + $minimum_version = $scl ? { + 'rh-redis32' => '3.2.13', + default => '5.0.5', + } + } else { + $config_dir = '/etc/redis' + $config_file = '/etc/redis.conf' + $config_file_orig = '/etc/redis.conf.puppet' + $package_name = 'redis' + $pid_file = $facts['os']['release']['major'] ? { + '6' => '/var/run/redis/redis.pid', + default => '/var/run/redis_6379.pid', + } + $service_name = 'redis' + $workdir = '/var/lib/redis' + + $sentinel_config_file = '/etc/redis-sentinel.conf' + $sentinel_config_file_orig = '/etc/redis-sentinel.conf.puppet' + $sentinel_service_name = 'redis-sentinel' + $sentinel_package_name = 'redis' + $sentinel_pid_file = '/var/run/redis/redis-sentinel.pid' + $sentinel_log_file = '/var/log/redis/sentinel.log' + + # EPEL 6 and newer have 3.2 so we can assume all EL is 3.2+ + $minimum_version = '3.2.10' } - $daemonize = false - $service_name = 'redis' - $workdir = '/var/lib/redis' - - $sentinel_config_file = '/etc/redis-sentinel.conf' - $sentinel_config_file_orig = '/etc/redis-sentinel.conf.puppet' - $sentinel_daemonize = false - $sentinel_init_script = undef - $sentinel_package_name = 'redis' - $sentinel_working_dir = '/tmp' - $sentinel_pid_file = '/var/run/redis/redis-sentinel.pid' - $sentinel_log_file = '/var/log/redis/sentinel.log' - - # EPEL 6 and newer have 3.2 so we can assume all EL is 3.2+ - $minimum_version = '3.2.10' } 'FreeBSD': { $ppa_repo = undef $config_dir = '/usr/local/etc/redis' $config_dir_mode = '0755' $config_file = '/usr/local/etc/redis.conf' $config_file_orig = '/usr/local/etc/redis.conf.puppet' $config_group = 'wheel' $config_owner = 'redis' $log_dir_mode = '0755' $package_name = 'redis' $pid_file = '/var/run/redis/redis.pid' $daemonize = true $service_name = 'redis' $workdir = '/var/db/redis' $sentinel_config_file = '/usr/local/etc/redis-sentinel.conf' $sentinel_config_file_orig = '/usr/local/etc/redis-sentinel.conf.puppet' + $sentinel_service_name = 'redis-sentinel' $sentinel_daemonize = true $sentinel_init_script = undef $sentinel_package_name = 'redis' $sentinel_pid_file = '/var/run/redis/redis-sentinel.pid' $sentinel_log_file = '/var/log/redis/sentinel.log' $sentinel_working_dir = '/tmp' # pkg version $minimum_version = '3.2.4' } 'Suse': { $ppa_repo = undef $config_dir = '/etc/redis' $config_dir_mode = '0750' $config_file = '/etc/redis/redis-server.conf' $config_group = 'redis' $config_owner = 'redis' $log_dir_mode = '0750' $package_name = 'redis' $pid_file = '/var/run/redis/redis-server.pid' $daemonize = true $service_name = 'redis' $workdir = '/var/lib/redis' $sentinel_config_file = '/etc/redis/redis-sentinel.conf' $sentinel_config_file_orig = '/etc/redis/redis-sentinel.conf.puppet' + $sentinel_service_name = 'redis-sentinel' $sentinel_daemonize = true $sentinel_init_script = undef $sentinel_package_name = 'redis' $sentinel_pid_file = '/var/run/redis/redis-sentinel.pid' $sentinel_log_file = '/var/log/redis/sentinel.log' $sentinel_working_dir = '/tmp' # suse package version $minimum_version = '3.0.5' } 'Archlinux': { $ppa_repo = undef $config_dir = '/etc/redis' $config_dir_mode = '0755' $config_file = '/etc/redis/redis.conf' $config_file_orig = '/etc/redis/redis.conf.puppet' $config_group = 'root' $config_owner = 'root' $log_dir_mode = '0755' $package_name = 'redis' $pid_file = '/var/run/redis.pid' $daemonize = true $service_name = 'redis' $workdir = '/var/lib/redis' $sentinel_config_file = '/etc/redis/redis-sentinel.conf' $sentinel_config_file_orig = '/etc/redis/redis-sentinel.conf.puppet' + $sentinel_service_name = 'redis-sentinel' $sentinel_daemonize = true $sentinel_init_script = undef $sentinel_package_name = 'redis' $sentinel_pid_file = '/var/run/redis/redis-sentinel.pid' $sentinel_log_file = '/var/log/redis/sentinel.log' $sentinel_working_dir = '/tmp' # pkg version $minimum_version = '3.2.4' } default: { fail "Operating system ${facts['os']['name']} is not supported yet." } } } diff --git a/manifests/preinstall.pp b/manifests/preinstall.pp index cdc2fc1..3378c30 100644 --- a/manifests/preinstall.pp +++ b/manifests/preinstall.pp @@ -1,26 +1,35 @@ # @summary Provides anything required by the install class, such as package # repositories. # @api private class redis::preinstall { if $redis::manage_repo { if $facts['os']['family'] == 'RedHat' { - require 'epel' + if $facts['os']['name'] != 'Fedora' { + if $redis::scl { + if $facts['os']['name'] == 'CentOS' { + ensure_packages(['centos-release-scl-rh']) + Package['centos-release-scl-rh'] -> Package[$redis::package_name] + } + } else { + require 'epel' + } + } } elsif $facts['os']['name'] == 'Debian' { contain 'apt' apt::source { 'dotdeb': location => 'http://packages.dotdeb.org/', repos => 'all', key => { id => '6572BBEF1B5FF28B28B706837E3F070089DF5277', source => 'http://www.dotdeb.org/dotdeb.gpg', }, include => { 'src' => true }, } } elsif $facts['os']['name'] == 'Ubuntu' { contain 'apt' apt::ppa { $redis::ppa_repo: } } } } diff --git a/manifests/sentinel.pp b/manifests/sentinel.pp index f6634f0..1494874 100644 --- a/manifests/sentinel.pp +++ b/manifests/sentinel.pp @@ -1,191 +1,191 @@ # @summary Install redis-sentinel # # @param auth_pass # The password to use to authenticate with the master and slaves. # # @param config_file # The location and name of the sentinel config file. # # @param config_file_orig # The location and name of a config file that provides the source # of the sentinel config file. Two different files are needed # because sentinel itself writes to its own config file and we do # not want override that when puppet is run unless there are # changes from the manifests. # # @param config_file_mode # Permissions of config file. # # @param conf_template # Define which template to use. # # @param daemonize # Have Redis sentinel run as a daemon. # # @param down_after # Number of milliseconds the master (or any attached slave or sentinel) # should be unreachable (as in, not acceptable reply to PING, continuously, # for the specified period) in order to consider it in S_DOWN state. # # @param failover_timeout # Specify the failover timeout in milliseconds. # # @param init_script # Specifiy the init script that will be created for sentinel. # # @param log_file # Specify where to write log entries. # # @param log_level # Specify how much we should log. # # @param master_name # Specify the name of the master redis server. # The valid charset is A-z 0-9 and the three characters ".-_". # # @param redis_host # Specify the bound host of the master redis server. # # @param redis_port # Specify the port of the master redis server. # # @param package_name # The name of the package that installs sentinel. # # @param package_ensure # Do we ensure this package. # # @param parallel_sync # How many slaves can be reconfigured at the same time to use a # new master after a failover. # # @param pid_file # If sentinel is daemonized it will write its pid at this location. # # @param quorum # Number of sentinels that must agree that a master is down to # signal sdown state. # # @param sentinel_bind # Allow optional sentinel server ip binding. Can help overcome # issues arising from protect-mode added Redis 3.2 # # @param sentinel_port # The port of sentinel server. # # @param service_group # The group of the config file. # # @param service_name # The name of the service (for puppet to manage). # # @param service_user # The owner of the config file. # # @param service_enable # Enable the service at boot time. # # @param working_dir # The directory into which sentinel will change to avoid mount # conflicts. # # @param notification_script # Path to the notification script # # @param client_reconfig_script # Path to the client-reconfig script # # @example Basic inclusion # include redis::sentinel # # @example Configuring options # class {'redis::sentinel': # down_after => 80000, # log_file => '/var/log/redis/sentinel.log', # } # class redis::sentinel ( Optional[String[1]] $auth_pass = undef, Stdlib::Absolutepath $config_file = $redis::params::sentinel_config_file, Stdlib::Absolutepath $config_file_orig = $redis::params::sentinel_config_file_orig, Stdlib::Filemode $config_file_mode = '0644', String[1] $conf_template = 'redis/redis-sentinel.conf.erb', Boolean $daemonize = $redis::params::sentinel_daemonize, Integer[1] $down_after = 30000, Integer[1] $failover_timeout = 180000, Optional[Stdlib::Absolutepath] $init_script = $redis::params::sentinel_init_script, String[1] $init_template = 'redis/redis-sentinel.init.erb', Redis::LogLevel $log_level = 'notice', Stdlib::Absolutepath $log_file = $redis::params::sentinel_log_file, String[1] $master_name = 'mymaster', Stdlib::Host $redis_host = '127.0.0.1', Stdlib::Port $redis_port = 6379, String[1] $package_name = $redis::params::sentinel_package_name, String[1] $package_ensure = 'present', Integer[0] $parallel_sync = 1, Stdlib::Absolutepath $pid_file = $redis::params::sentinel_pid_file, Integer[1] $quorum = 2, Variant[Undef, Stdlib::IP::Address, Array[Stdlib::IP::Address]] $sentinel_bind = undef, Stdlib::Port $sentinel_port = 26379, String[1] $service_group = 'redis', - String[1] $service_name = 'redis-sentinel', + String[1] $service_name = $redis::params::sentinel_service_name, Stdlib::Ensure::Service $service_ensure = 'running', Boolean $service_enable = true, String[1] $service_user = 'redis', Stdlib::Absolutepath $working_dir = $redis::params::sentinel_working_dir, Optional[Stdlib::Absolutepath] $notification_script = undef, Optional[Stdlib::Absolutepath] $client_reconfig_script = undef, ) inherits redis::params { require 'redis' if $facts['os']['family'] == 'Debian' { package { $package_name: ensure => $package_ensure, before => File[$config_file_orig], } if $init_script { Package[$package_name] -> File[$init_script] } } file { $config_file_orig: ensure => file, owner => $service_user, group => $service_group, mode => $config_file_mode, content => template($conf_template), } exec { "cp -p ${config_file_orig} ${config_file}": path => '/usr/bin:/bin', subscribe => File[$config_file_orig], notify => Service[$service_name], refreshonly => true, } if $init_script { file { $init_script: ensure => file, owner => 'root', group => 'root', mode => '0755', content => template($init_template), } exec { '/usr/sbin/update-rc.d redis-sentinel defaults': subscribe => File[$init_script], refreshonly => true, notify => Service[$service_name], } } service { $service_name: ensure => $service_ensure, enable => $service_enable, } } diff --git a/spec/acceptance/suites/scl/redis5_spec.rb b/spec/acceptance/suites/scl/redis5_spec.rb new file mode 100644 index 0000000..d23e8ee --- /dev/null +++ b/spec/acceptance/suites/scl/redis5_spec.rb @@ -0,0 +1,41 @@ +require 'spec_helper_acceptance' + +describe 'redis', if: %w[centos redhat].include?(os[:family]) && os[:release].to_i >= 7 do + before(:all) do + on hosts, puppet_resource('service', 'redis', 'ensure=stopped', 'enable=false') + end + + after(:all) do + on hosts, puppet_resource('service', 'rh-redis5-redis', 'ensure=stopped', 'enable=false') + end + + it 'runs successfully' do + pp = <<-PUPPET + class { 'redis::globals': + scl => 'rh-redis5', + } + class { 'redis': + manage_repo => true, + } + PUPPET + + # Apply twice to ensure no errors the second time. + apply_manifest(pp, catch_failures: true) + apply_manifest(pp, catch_changes: true) + end + + describe package('rh-redis5-redis') do + it { is_expected.to be_installed } + end + + describe service('rh-redis5-redis') do + it { is_expected.to be_running } + it { is_expected.to be_enabled } + end + + context 'redis should respond to ping command' do + describe command('scl enable rh-redis5 -- redis-cli ping') do + its(:stdout) { is_expected.to match %r{PONG} } + end + end +end diff --git a/spec/classes/redis_spec.rb b/spec/classes/redis_spec.rb index ea12c7f..eb7e0f7 100644 --- a/spec/classes/redis_spec.rb +++ b/spec/classes/redis_spec.rb @@ -1,1341 +1,1367 @@ require 'spec_helper' describe 'redis' do let(:service_file) { redis_service_file(service_provider: facts['service_provider']) } let(:package_name) { manifest_vars[:package_name] } let(:service_name) { manifest_vars[:service_name] } let(:config_file_orig) { manifest_vars[:config_file_orig] } on_supported_os.each do |os, facts| context "on #{os}" do let(:facts) { facts } describe 'without parameters' do + it { is_expected.to compile.with_all_deps } it { is_expected.to create_class('redis') } it { is_expected.to contain_class('redis::preinstall') } it { is_expected.to contain_class('redis::install') } it { is_expected.to contain_class('redis::config') } it { is_expected.to contain_class('redis::service') } it { is_expected.to contain_package(package_name).with_ensure('present') } it do is_expected.to contain_file(config_file_orig). with_ensure('file'). without_content(%r{undef}) if facts[:osfamily] == 'FreeBSD' is_expected.to contain_file(config_file_orig). with_content(%r{dir /var/db/redis}). with_content(%r{pidfile /var/run/redis/redis\.pid}) end end it do is_expected.to contain_service(service_name).with( 'ensure' => 'running', 'enable' => 'true', 'hasrestart' => 'true', 'hasstatus' => 'true' ) end + + context 'with SCL', if: facts[:osfamily] == 'RedHat' do + let(:pre_condition) do + <<-PUPPET + class { 'redis::globals': + scl => 'rh-redis5', + } + PUPPET + end + + it { is_expected.to compile.with_all_deps } + it do + is_expected.to create_class('redis'). + with_package_name('rh-redis5-redis'). + with_config_file('/etc/opt/rh/rh-redis5/redis.conf'). + with_service_name('rh-redis5-redis') + end + + context 'manage_repo => true', if: facts[:operatingsystem] == 'CentOS' do + let(:params) { { manage_repo: true } } + + it { is_expected.to compile.with_all_deps } + it { is_expected.to contain_package('centos-release-scl-rh') } + end + end end context 'with managed_by_cluster_manager true' do let(:params) { { managed_by_cluster_manager: true } } it { is_expected.to compile.with_all_deps } it do is_expected.to contain_file('/etc/security/limits.d/redis.conf').with( 'ensure' => 'file', 'owner' => 'root', 'group' => 'root', 'mode' => '0644', 'content' => "redis soft nofile 65536\nredis hard nofile 65536\n" ) end context 'when not managing service' do let(:params) { super().merge(service_manage: false, notify_service: false) } it { is_expected.to compile.with_all_deps } it do is_expected.to contain_file('/etc/security/limits.d/redis.conf').with( 'ensure' => 'file', 'owner' => 'root', 'group' => 'root', 'mode' => '0644', 'content' => "redis soft nofile 65536\nredis hard nofile 65536\n" ) end end end context 'with ulimit' do let(:params) { { ulimit: 7777 } } it { is_expected.to compile.with_all_deps } it do if facts['service_provider'] == 'systemd' is_expected.to contain_file("/etc/systemd/system/#{service_name}.service.d/limit.conf"). with_ensure('file'). with_owner('root'). with_group('root'). with_mode('0444') is_expected.to contain_augeas('Systemd redis ulimit'). with_incl("/etc/systemd/system/#{service_name}.service.d/limit.conf"). with_lens('Systemd.lns'). with_changes(['defnode nofile Service/LimitNOFILE ""', 'set $nofile/value "7777"']). that_notifies('Exec[systemd-reload-redis]') else is_expected.not_to contain_file('/etc/systemd/system/redis-server.service.d/limit.conf') is_expected.not_to contain_augeas('Systemd redis ulimit') if %w[Debian RedHat].include?(facts[:osfamily]) ulimit_context = case facts[:osfamily] when 'Debian' '/files/etc/default/redis-server' when 'RedHat' '/files/etc/sysconfig/redis' end if ulimit_context is_expected.to contain_augeas('redis ulimit'). with_changes('set ULIMIT 7777'). with_context(ulimit_context) else is_expected.not_to contain_augeas('redis ulimit') end end end end end describe 'with parameter activerehashing' do let(:params) do { activerehashing: true } end it { is_expected.to contain_file(config_file_orig).with_content(%r{activerehashing.*yes}) } end describe 'with parameter aof_load_truncated' do let(:params) do { aof_load_truncated: true } end it { is_expected.to contain_file(config_file_orig).with_content(%r{aof-load-truncated.*yes}) } end describe 'with parameter aof_rewrite_incremental_fsync' do let(:params) do { aof_rewrite_incremental_fsync: true } end it { is_expected.to contain_file(config_file_orig).with_content(%r{aof-rewrite-incremental-fsync.*yes}) } end describe 'with parameter appendfilename' do let(:params) do { appendfilename: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with_content(%r{appendfilename.*_VALUE_}) } end describe 'with parameter appendfsync' do let(:params) do { appendfsync: 'no' } end it { is_expected.to contain_file(config_file_orig).with_content(%r{^appendfsync no$}) } end describe 'with parameter appendonly' do let(:params) do { appendonly: true } end it { is_expected.to contain_file(config_file_orig).with_content(%r{appendonly.*yes}) } end describe 'with parameter auto_aof_rewrite_min_size' do let(:params) do { auto_aof_rewrite_min_size: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with_content(%r{auto-aof-rewrite-min-size.*_VALUE_}) } end describe 'with parameter auto_aof_rewrite_percentage' do let(:params) do { auto_aof_rewrite_percentage: 75 } end it { is_expected.to contain_file(config_file_orig).with_content(%r{auto-aof-rewrite-percentage 75}) } end describe 'parameter bind' do context 'by default' do it 'binds to localhost' do is_expected.to contain_file(config_file_orig).with_content(%r{bind 127\.0\.0\.1$}) end end context 'with a single IP address' do let(:params) { { bind: '10.0.0.1' } } it { is_expected.to contain_file(config_file_orig).with_content(%r{bind 10\.0\.0\.1$}) } end context 'with array of IP addresses' do let(:params) do { bind: ['127.0.0.1', '::1'] } end it { is_expected.to contain_file(config_file_orig).with_content(%r{bind 127\.0\.0\.1 ::1}) } end context 'with empty array' do let(:params) { { bind: [] } } it { is_expected.not_to contain_file(config_file_orig).with_content(%r{^bind}) } end end describe 'with parameter output_buffer_limit_slave' do let(:params) do { output_buffer_limit_slave: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with_content(%r{client-output-buffer-limit slave.*_VALUE_}) } end describe 'with parameter output_buffer_limit_pubsub' do let(:params) do { output_buffer_limit_pubsub: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with_content(%r{client-output-buffer-limit pubsub.*_VALUE_}) } end describe 'with parameter: config_dir' do let(:params) { { config_dir: '/etc/config_dir' } } it { is_expected.to contain_file('/etc/config_dir').with_ensure('directory') } end describe 'with parameter: config_dir_mode' do let(:params) { { config_dir_mode: '0700' } } it { is_expected.to contain_file('/etc/redis').with_mode('0700') } end describe 'with parameter: log_dir_mode' do let(:params) { { log_dir_mode: '0660' } } it { is_expected.to contain_file('/var/log/redis').with_mode('0660') } end describe 'with parameter: config_file_orig' do let(:params) { { config_file_orig: '/path/to/orig' } } it { is_expected.to contain_file('/path/to/orig') } end describe 'with parameter: config_file_mode' do let(:params) { { config_file_mode: '0600' } } it { is_expected.to contain_file(config_file_orig).with_mode('0600') } end describe 'with parameter: config_group' do let(:params) { { config_group: '_VALUE_' } } it { is_expected.to contain_file('/etc/redis').with_group('_VALUE_') } end describe 'with parameter: config_owner' do let(:params) { { config_owner: '_VALUE_' } } it { is_expected.to contain_file('/etc/redis').with_owner('_VALUE_') } end describe 'with parameter daemonize' do let(:params) do { daemonize: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{daemonize.*yes} ) } end describe 'with parameter databases' do let(:params) do { databases: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{databases 42} ) } end describe 'with parameter dbfilename' do let(:params) do { dbfilename: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{dbfilename.*_VALUE_} ) } end describe 'without parameter dbfilename' do let(:params) do { dbfilename: false } end it { is_expected.to contain_file(config_file_orig).without_content(%r{^dbfilename}) } end describe 'with parameter hash_max_ziplist_entries' do let(:params) do { hash_max_ziplist_entries: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{hash-max-ziplist-entries 42} ) } end describe 'with parameter hash_max_ziplist_value' do let(:params) do { hash_max_ziplist_value: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{hash-max-ziplist-value 42} ) } end # TODO: Only present in 3.0 describe 'with parameter list_max_ziplist_entries' do let(:params) do { list_max_ziplist_entries: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{list-max-ziplist-entries 42} ) } end describe 'with parameter list_max_ziplist_value' do let(:params) do { list_max_ziplist_value: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{list-max-ziplist-value 42} ) } end describe 'with parameter log_dir' do let(:params) do { log_dir: '/var/log/redis' } end it { is_expected.to contain_file('/var/log/redis').with( 'ensure' => 'directory' ) } end describe 'with parameter log_file' do let(:params) do { log_file: '/var/log/redis/redis.log' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^logfile /var/log/redis/redis\.log$} ) } end describe 'with parameter log_level' do let(:params) do { log_level: 'debug' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^loglevel debug$} ) } end describe 'with parameter: manage_repo' do let(:params) { { manage_repo: true } } case facts[:operatingsystem] when 'Debian' context 'on Debian' do it do is_expected.to create_apt__source('dotdeb').with(location: 'http://packages.dotdeb.org/', repos: 'all', key: { 'id' => '6572BBEF1B5FF28B28B706837E3F070089DF5277', 'source' => 'http://www.dotdeb.org/dotdeb.gpg' }, include: { 'src' => true }) end end when 'Ubuntu' it { is_expected.to contain_apt__ppa('ppa:chris-lea/redis-server') } when 'RedHat', 'CentOS', 'Scientific', 'OEL', 'Amazon' it { is_expected.to contain_class('epel') } end end describe 'with parameter unixsocket' do describe '/tmp/redis.sock' do let(:params) { { unixsocket: '/tmp/redis.sock' } } it { is_expected.to contain_file(config_file_orig).with_content(%r{^unixsocket /tmp/redis\.sock$}) } end describe 'empty string' do let(:params) { { unixsocket: '' } } it { is_expected.to contain_file(config_file_orig).without_content(%r{^unixsocket }) } end end describe 'with parameter unixsocketperm' do describe '777' do let(:params) { { unixsocketperm: '777' } } it { is_expected.to contain_file(config_file_orig).with_content(%r{^unixsocketperm 777$}) } end describe 'empty string' do let(:params) { { unixsocketperm: '' } } it { is_expected.to contain_file(config_file_orig).without_content(%r{^unixsocketperm }) } end end describe 'with parameter masterauth' do let(:params) do { masterauth: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{masterauth.*_VALUE_} ) } end describe 'with parameter maxclients' do let(:params) do { maxclients: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^maxclients 42$} ) } end describe 'with parameter maxmemory' do let(:params) do { maxmemory: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{maxmemory.*_VALUE_} ) } end describe 'with parameter maxmemory_policy' do let(:params) do { maxmemory_policy: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{maxmemory-policy.*_VALUE_} ) } end describe 'with parameter maxmemory_samples' do let(:params) do { maxmemory_samples: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{maxmemory-samples.*_VALUE_} ) } end describe 'with parameter min_slaves_max_lag' do let(:params) do { min_slaves_max_lag: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^min-slaves-max-lag 42$} ) } end describe 'with parameter min_slaves_to_write' do let(:params) do { min_slaves_to_write: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^min-slaves-to-write 42$} ) } end describe 'with parameter notify_keyspace_events' do let(:params) do { notify_keyspace_events: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{notify-keyspace-events.*_VALUE_} ) } end describe 'with parameter notify_service' do let(:params) do { notify_service: true } end it { is_expected.to contain_file(config_file_orig).that_notifies("Service[#{service_name}]") } end describe 'with parameter no_appendfsync_on_rewrite' do let(:params) do { no_appendfsync_on_rewrite: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{no-appendfsync-on-rewrite.*yes} ) } end describe 'with parameter: package_ensure' do let(:params) { { package_ensure: '_VALUE_' } } it { is_expected.to contain_package(package_name).with( 'ensure' => '_VALUE_' ) } end describe 'with parameter: package_name' do let(:params) { { package_name: '_VALUE_' } } it { is_expected.to contain_package('_VALUE_') } end describe 'with parameter pid_file' do let(:params) do { pid_file: '/path/to/redis.pid' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^pidfile /path/to/redis.pid$} ) } end describe 'with parameter port' do let(:params) do { port: 6666 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^port 6666$} ) } end describe 'with parameter protected-mode' do let(:params) do { protected_mode: false } end it do if facts[:operatingsystem] == 'Ubuntu' && facts[:operatingsystemmajrelease] == '16.04' is_expected.not_to contain_file(config_file_orig).with_content(%r{protected-mode}) else is_expected.to contain_file(config_file_orig).with_content(%r{^protected-mode no$}) end end end describe 'with parameter hll_sparse_max_bytes' do let(:params) do { hll_sparse_max_bytes: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^hll-sparse-max-bytes 42$} ) } end describe 'with parameter hz' do let(:params) do { hz: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^hz 42$} ) } end describe 'with parameter latency_monitor_threshold' do let(:params) do { latency_monitor_threshold: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^latency-monitor-threshold 42$} ) } end describe 'with parameter rdbcompression' do let(:params) do { rdbcompression: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{rdbcompression.*yes} ) } end describe 'with parameter repl_backlog_size' do let(:params) do { repl_backlog_size: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{repl-backlog-size.*_VALUE_} ) } end describe 'with parameter repl_backlog_ttl' do let(:params) do { repl_backlog_ttl: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^repl-backlog-ttl 42$} ) } end describe 'with parameter repl_disable_tcp_nodelay' do let(:params) do { repl_disable_tcp_nodelay: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{repl-disable-tcp-nodelay.*yes} ) } end describe 'with parameter repl_ping_slave_period' do let(:params) do { repl_ping_slave_period: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^repl-ping-slave-period 42} ) } end describe 'with parameter repl_timeout' do let(:params) do { repl_timeout: 1 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{repl-timeout.*1} ) } end describe 'with parameter requirepass' do let(:params) do { requirepass: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{requirepass.*_VALUE_} ) } end describe 'with parameter save_db_to_disk' do context 'true' do let(:params) do { save_db_to_disk: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^save} ) } end context 'false' do let(:params) do { save_db_to_disk: false } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^(?!save)} ) } end end describe 'with parameter save_db_to_disk_interval' do context 'with save_db_to_disk true' do context 'default' do let(:params) do { save_db_to_disk: true } end it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 900 1}) } it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 300 10}) } it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 60 10000}) } end context 'default' do let(:params) do { save_db_to_disk: true, save_db_to_disk_interval: { '900' => '2', '300' => '11', '60' => '10011' } } end it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 900 2}) } it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 300 11}) } it { is_expected.to contain_file(config_file_orig).with('content' => %r{save 60 10011}) } end end context 'with save_db_to_disk false' do context 'default' do let(:params) do { save_db_to_disk: false } end it { is_expected.to contain_file(config_file_orig).without('content' => %r{save 900 1}) } it { is_expected.to contain_file(config_file_orig).without('content' => %r{save 300 10}) } it { is_expected.to contain_file(config_file_orig).without('content' => %r{save 60 10000}) } end end end describe 'with parameter: service_manage (set to false)' do let(:params) { { service_manage: false } } it { is_expected.not_to contain_service(package_name) } end describe 'with parameter: service_enable' do let(:params) { { service_enable: true } } it { is_expected.to contain_service(package_name).with_enable(true) } end describe 'with parameter: service_ensure' do let(:params) { { service_ensure: 'stopped' } } it { is_expected.to contain_service(package_name).with_ensure('stopped') } end describe 'with parameter: service_group' do let(:params) { { service_group: '_VALUE_' } } it { is_expected.to contain_file('/var/log/redis').with_group('_VALUE_') } end describe 'with parameter: service_hasrestart' do let(:params) { { service_hasrestart: true } } it { is_expected.to contain_service(package_name).with_hasrestart(true) } end describe 'with parameter: service_hasstatus' do let(:params) { { service_hasstatus: true } } it { is_expected.to contain_service(package_name).with_hasstatus(true) } end describe 'with parameter: service_name' do let(:params) { { service_name: '_VALUE_' } } it { is_expected.to contain_service('_VALUE_').with_name('_VALUE_') } end describe 'with parameter: service_user' do let(:params) { { service_user: '_VALUE_' } } it { is_expected.to contain_file('/var/log/redis').with_owner('_VALUE_') } end describe 'with parameter set_max_intset_entries' do let(:params) do { set_max_intset_entries: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^set-max-intset-entries 42$} ) } end describe 'with parameter slave_priority' do let(:params) do { slave_priority: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^slave-priority 42$} ) } end describe 'with parameter slave_read_only' do let(:params) do { slave_read_only: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{slave-read-only.*yes} ) } end describe 'with parameter slave_serve_stale_data' do let(:params) do { slave_serve_stale_data: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{slave-serve-stale-data.*yes} ) } end describe 'with parameter: slaveof' do context 'binding to localhost' do let(:params) do { bind: '127.0.0.1', slaveof: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^slaveof _VALUE_} ) } end context 'binding to external ip' do let(:params) do { bind: '10.0.0.1', slaveof: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^slaveof _VALUE_} ) } end end describe 'with parameter slowlog_log_slower_than' do let(:params) do { slowlog_log_slower_than: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^slowlog-log-slower-than 42$} ) } end describe 'with parameter slowlog_max_len' do let(:params) do { slowlog_max_len: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^slowlog-max-len 42$} ) } end describe 'with parameter stop_writes_on_bgsave_error' do let(:params) do { stop_writes_on_bgsave_error: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{stop-writes-on-bgsave-error.*yes} ) } end describe 'with parameter syslog_enabled' do let(:params) do { syslog_enabled: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{syslog-enabled yes} ) } end describe 'with parameter syslog_facility' do let(:params) do { syslog_enabled: true, syslog_facility: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{syslog-facility.*_VALUE_} ) } end describe 'with parameter tcp_backlog' do let(:params) do { tcp_backlog: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^tcp-backlog 42$} ) } end describe 'with parameter tcp_keepalive' do let(:params) do { tcp_keepalive: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^tcp-keepalive 42$} ) } end describe 'with parameter timeout' do let(:params) do { timeout: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^timeout 42$} ) } end describe 'with parameter workdir' do let(:params) do { workdir: '/var/workdir' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{^dir /var/workdir$} ) } end describe 'with parameter zset_max_ziplist_entries' do let(:params) do { zset_max_ziplist_entries: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{zset-max-ziplist-entries 42} ) } end describe 'with parameter zset_max_ziplist_value' do let(:params) do { zset_max_ziplist_value: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{zset-max-ziplist-value 42} ) } end describe 'with parameter cluster_enabled-false' do let(:params) do { cluster_enabled: false } end it { is_expected.not_to contain_file(config_file_orig).with( 'content' => %r{cluster-enabled} ) } end describe 'with parameter cluster_enabled-true' do let(:params) do { cluster_enabled: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{cluster-enabled.*yes} ) } end describe 'with parameter cluster_config_file' do let(:params) do { cluster_enabled: true, cluster_config_file: '_VALUE_' } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{cluster-config-file.*_VALUE_} ) } end describe 'with parameter cluster_config_file' do let(:params) do { cluster_enabled: true, cluster_node_timeout: 42 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{cluster-node-timeout 42} ) } end describe 'with parameter cluster_config_file' do let(:params) do { cluster_enabled: true, cluster_slave_validity_factor: 1 } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{cluster-slave-validity-factor.*1} ) } end describe 'with parameter cluster_config_file' do let(:params) do { cluster_enabled: true, cluster_require_full_coverage: true } end it { is_expected.to contain_file(config_file_orig).with( 'content' => %r{cluster-require-full-coverage.*yes} ) } end describe 'with parameter cluster_config_file' do let(:params) do { cluster_enabled: true, cluster_require_full_coverage: false } end it { is_expected.to contain_file(config_file_orig).with_content(%r{cluster-require-full-coverage.*no}) } end describe 'with parameter cluster_config_file' do let(:params) do { cluster_enabled: true, cluster_migration_barrier: 1 } end it { is_expected.to contain_file(config_file_orig).with_content(%r{cluster-migration-barrier.*1}) } end describe 'with parameter manage_service_file' do let(:params) do { manage_service_file: true } end it { is_expected.to contain_file(service_file) } end describe 'with parameter manage_service_file' do let(:params) do { manage_service_file: false } end it { is_expected.not_to contain_file(service_file) } end context 'when $::redis_server_version fact is not present' do let(:facts) { super().merge(redis_server_version: nil) } context 'when package_ensure is version (3.2.1)' do let(:params) { { package_ensure: '3.2.1' } } it { is_expected.to contain_file(config_file_orig).with_content(%r{^protected-mode}) } end context 'when package_ensure is a newer version(4.0-rc3) (older features enabled)' do let(:params) { { package_ensure: '4.0-rc3' } } it { is_expected.to contain_file(config_file_orig).with_content(%r{^protected-mode}) } end end context 'when $::redis_server_version fact is present but a newer version (older features enabled)' do let(:facts) { super().merge(redis_server_version: '3.2.1') } it { is_expected.to contain_file(config_file_orig).with_content(%r{^protected-mode}) } end end end end