Forge Home

openiosds

Puppet module for OpenIO SDS solution

18,809 downloads

7,617 latest version

5.0 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

  • 1.1.42 (latest)
  • 1.1.41
  • 1.1.40
  • 1.1.39
  • 1.1.38
  • 1.1.37
  • 1.1.36
  • 1.1.35
  • 1.1.34
  • 1.1.33
  • 1.1.32
  • 1.1.31
  • 1.1.30
  • 1.1.29
  • 1.1.28
  • 1.1.25 (deleted)
  • 1.1.18
  • 1.1.17 (deleted)
  • 1.1.16
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.5
  • 1.0.4
  • 1.0.3 (deleted)
  • 1.0.2 (deleted)
  • 1.0.1 (deleted)
  • 1.0.0 (deleted)
released May 23rd 2016
This version is compatible with:
  • , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'openio-openiosds', '1.1.42'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add openio-openiosds
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install openio-openiosds --version 1.1.42

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

openio/openiosds — version 1.1.42 May 23rd 2016

openiosds

Table of Contents

  1. Description
  2. Setup - The basics of getting started with [openiosds]
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Description

Official module to deploy the OpenIO open source object storage solution on RedHat/CentOS/Fedora using Puppet 3.7 and newer.

This module helps you deploy the multiple services required to create an OpenIO SDS namespace. It prepares destination directories, user and group rights, installs packages, configures services and starts them using OpenIO's GridInit service management.

Setup

Beginning with [openiosds]

For a standalone simple OpenIO namespace, you must declare a namespace and deploy the required services.

Here is an example for a namespace called 'OPENIO':

class {'openiosds':}
openiosds::namespace {'OPENIO':
  ns             => 'OPENIO',
  conscience_url => "${ipaddress}:6000",
  oioproxy_url   => "${ipaddress}:6006",
  eventagent_url => "tcp://${ipaddress}:6008",
}
openiosds::conscience {'conscience-0':
  ns             => 'OPENIO',
}
openiosds::meta0 {'meta0-0':
  ns => 'OPENIO',
}
openiosds::meta1 {'meta1-0':
  ns => 'OPENIO',
}
openiosds::meta2 {'meta2-0':
  ns => 'OPENIO',
}
openiosds::rawx {'rawx-0':
  ns => 'OPENIO',
}
openiosds::account {'account-0':
  ns         => 'OPENIO',
}
openiosds::oioeventagent {'oio-event-agent-0':
  ns        => 'OPENIO',
}
openiosds::oioproxy {'oioproxy-0':
  ns        => 'OPENIO',
}
openiosds::conscienceagent {'conscienceagent-0':
  ns        => 'OPENIO',
}
openiosds::redis {'redis-0':
  ns        => 'OPENIO',
}
openiosds::rdir {'rdir-0':
  ns        => 'OPENIO',
}

Reference

A number of defined types are availables:

  • openiosds::namespace
  • openiosds::conscience
  • openiosds::meta0
  • openiosds::meta1
  • openiosds::meta2
  • openiosds::rawx
  • openiosds::rdir
  • openiosds::account
  • openiosds::oioeventagent
  • openiosds::zookeeper
  • openiosds::oioswift
  • openiosds::oioproxy
  • openiosds::redis
  • openiosds::redissentinel

Limitations

The module works under the latest stable RedHat, CentOS and Fedora, Debian and Ubuntu (LTS & latest).

Development

You can report issues or request informations using GitHub.

Release Notes/Contributors/Etc.

Author: Romain Acciari romain.acciari@openio.io
Copyright (c) 2015, OpenIO.
Released under Apache License v2.