Forge Home

rethinkdb

Puppet RethinkDB management module

11,009 downloads

9,985 latest version

3.2 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.0 (latest)
  • 0.0.2
  • 0.0.1
released Sep 20th 2014

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'tmont-rethinkdb', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add tmont-rethinkdb
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install tmont-rethinkdb --version 0.1.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

tmont/rethinkdb — version 0.1.0 Sep 20th 2014

puppet-rethinkdb

A Puppet module for RethinkDB.

Dependencies

Limitations

  • Only works under Ubuntu. Sorry.
  • Only supports a single instance per machine
  • It requires a user/group for the service (defaults to rethinkdb and rethinkdb)

Installation

Usage

With all the defaults:

include rethinkdb

With custom parameters:

# these are the default values for each parameter
class { 'rethinkdb':
    rethinkdb_user => 'rethinkdb'
    rethinkdb_group => 'rethinkdb',
    instance_name => 'default',
    driver_port => 28015,
    http_port => 8080,
    cluster_port => 29015,
    rethinkdb_bind => 'all', #slightly dangerous, see below
    rethinkdb_join => undef #e.g. "mymachine:29015"
}

The above will generate the following conf file (in /etc/rethinkdb/instances.d/default.conf):

# Automatically generated by puppet
runuser=rethinkdb
rungroup=rethinkdb
directory=/var/lib/rethinkdb/instances.d/default
pid-file=/var/run/rethinkdb/instances.d/default.pid
driver-port=28015
cluster-port=29015
http-port=8081

bind=all

The default for the bind parameter is probably not ideal, but it'll make everything work out of the box. You can probably change it to the machine's IP address on the LAN (e.g. 10.0.*.* or 192.168.*.*) for something less open. Your mileage may vary.

See the RethinkDB docs for more detail on configuration options.

What actually happens

  • Installs rethinkdb via its repo
  • Creates a user/group for the rethinkdb service
  • Generates a conf file and puts it into /etc/rethinkdb/instances.d
  • Runs rethinkdb create -d /var/lib/rethinkdb/instances.d, which is the default directory
  • Ensures the init.d service will run on startup