Forge Home

ceph

A module for configuring ceph

10,944 downloads

6,892 latest version

4.6 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.2.0 (latest)
  • 0.1.0
  • 0.0.1
released Sep 12th 2017
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 'norisnetwork-ceph', '0.2.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add norisnetwork-ceph
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install norisnetwork-ceph --version 0.2.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
Tags: ceph

Documentation

norisnetwork/ceph — version 0.2.0 Sep 12th 2017

puppet-ceph

Build Status

Table of Contents

  1. Overview
  2. Setup - The basics of getting started with puppet-ceph
  3. Parameters

Overview

This module configures a ceph cluster.

Setup

What puppet-ceph affects

The module will setup the ceph Package repository, and installs the ceph packages. It will configure /etc/ceph.conf. On osd servers it will mount and setup the data partitions.

Setup Requirements

Beginning with puppet-ceph


node 'mon01.example.com' {
  class {'ceph':
    mon_hosts   => [ 'mon01.example.com', 'mon02.example.com', 'mon03.example.com' ]
    release     => 'hammer',
    cluster_net => '1.2.3.0/24',
    public_net  => '1.2.4.0/24',
  }

  class {'ceph::server::mon':
    id => 1
  }
}

node 'osd01.example.com' {
  class {'ceph':
    mon_hosts   => [ 'mon01.example.com', 'mon02.example.com', 'mon03.example.com' ]
    release     => 'hammer',
    cluster_net => '1.2.3.0/24',
    public_net  => '1.2.4.0/24',
  }

  ceph::server::osd { 0:
    data    => '/dev/sdc',
    journal => '/dev/sdb1',
  }

  ceph::server::osd { 1:
    data    => '/dev/sdd',
    journal => '/dev/sdb2',
  }
}