mongodb

contributions requested
UNKNOWN

13,963 downloads

11,125 latest version

1.5 quality score

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 0.1.2 (latest)
  • 0.1.1
  • 0.1.0
  • 0.0.9
  • 0.0.8
  • 0.0.7
  • 0.0.5 (deleted)
  • 0.0.4 (deleted)
  • 0.0.3 (deleted)
  • 0.0.2 (deleted)
  • 0.0.1 (deleted)
released Oct 26th 2012

Start using this module

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

Add this module to your Puppetfile:

mod 'portertech-mongodb', '0.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add portertech-mongodb
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install portertech-mongodb --version 0.1.2

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

portertech/mongodb — version 0.1.2 Oct 26th 2012

MongoDB Module

Author : Sean Porter portertech@gmail.com Version : 0.1.2 Licence : Apache

Module for creating a MongoDB server.

This module is Ubuntu specific.

Sample Usage : node 'mongodb-1.domain.com', 'mongodb-2.domain.com', 'mongodb-3.domain.com' {

# Install MongoDB
class { mongodb:
  # Nodes are in a replica set
  replSet => "example_set_name",
  # Increased open files limit (MongoDB connections, etc.)
  ulimit_nofile => 20000,
}

}

CONTRIBUTORS

Knut Moller - https://github.com/v1rtual Nixon - https://github.com/nixon Craig Younkins - https://github.com/cyounkins Matt McManus - https://github.com/mattmcmanus Garth Kidd - https://github.com/garthk Jackqu7 - https://github.com/jackqu7 Dobrist - https://github.com/dobrist

CHANGELOG

  • v0.0.1 : Hello World.
  • v0.0.2 : Require APT to update.
  • v0.0.3 : Fixed APT update.
  • v0.0.4 : Support for multiple Ubuntu releases. Added replica set support.
  • v0.0.5 : Support for Ubuntu Maverick (10.10).
  • v0.0.6 : Added "python-software-properties" for APT abstraction.
  • v0.0.7 : Added support for Ubuntu Natty Narwhal (11.04).
  • v0.0.8 : Support Ubuntu releases (>= 9.04) (Upstart). Use a class. Adjust ulimit.
  • v0.0.9 : Fixed possible duplicate Package["python-software-properties"].
  • v0.1.0 : Fixed package install prior to notifying the service & added tests.
  • v0.1.1 : Optional process respawn, removed python-software-properties package.
  • v0.1.2 : Changed APT key server URL to be egress filtering friendly.