Ceph Puppet Module
Go to file
Sebastien Badia cf6478490e spec: updates for rspec-puppet 2.x and rspec 3.x
This patch aim to update our specs test in order to work with the new
rspec-puppet release 2.0.0, in the mean time, we update rspec syntax
in order to be prepared for rspec 3.x move.

In details:

  * Convert 'should' keyword to 'is_expected.to' (prepare rspec 3.x)
  * Upgrade and pin rspec-puppet from 1.0.1 to 2.0.0
  * Clean Gemfile (remove over-specificication of runtime deps of puppetlabs_spec_helper)

Change-Id: I512ffe4ac12763ec5a4bea935001088bad231cc1
2015-02-27 13:41:44 +00:00
examples Bump default version to giant, test against giant and drop emperor 2015-02-02 10:45:12 -05:00
lib/puppet Add ceph_config ini helper 2013-10-25 10:22:01 -07:00
manifests Check and lint documentation parameters 2015-02-27 00:45:37 +01:00
spec spec: updates for rspec-puppet 2.x and rspec 3.x 2015-02-27 13:41:44 +00:00
.fixtures.yml define ceph::rgw, ceph::rgw::apache. 2014-09-23 16:15:00 +12:00
.gitignore Adding base infrastructure for beaker CI tests 2015-02-03 23:47:47 +01:00
.gitreview Initial Commit. 2013-10-18 21:29:43 -04:00
.nodeset.yml Update CI boxes 2015-02-17 16:32:56 +01:00
.prefabs.yml Update CI boxes 2015-02-17 16:32:56 +01:00
Gemfile spec: updates for rspec-puppet 2.x and rspec 3.x 2015-02-27 13:41:44 +00:00
Gemfile-rspec-system spec: updates for rspec-puppet 2.x and rspec 3.x 2015-02-27 13:41:44 +00:00
LICENSE Add project files 2013-10-20 22:45:54 -07:00
Puppetfile Fix rspec and rspec system puppet tests for ceph::rgw 2014-12-19 13:13:05 +01:00
README.md Merge "Adding base infrastructure for beaker CI tests" 2015-02-17 23:06:51 +00:00
Rakefile spec: updates for rspec-puppet 2.x and rspec 3.x 2015-02-27 13:41:44 +00:00
USECASES.md Fix to allow for arbitrary interface naming 2015-02-19 00:08:16 +01:00
metadata.json Switch to metadata.json for Puppet forge releases 2015-02-02 15:43:19 +01:00

README.md

ceph

Table of Contents

  1. Overview - What is the ceph module?
  2. Module Description - What does the module do?
  3. Setup - The basics of getting started with ceph
  4. Implementation - An under-the-hood peek at what the module is doing
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module
  7. Contributors - Those with commits
  8. Integration - Apply the module and test restults
  9. Release Notes - Notes on the most recent updates to the module

Overview

The ceph module is intended to leverage all Ceph has to offer and allow for a wide range of use case. Although hosted on the OpenStack infrastructure, it does not require to sign a CLA nor is it restricted to OpenStack users. It benefits from a structured development process that helps federate the development effort. Each feature is tested with integration tests involving virtual machines to show that it performs as expected when used with a realistic scenario.

Module Description

The ceph module deploys a Ceph cluster ( MON, OSD ), the Cephfs file system and the RadosGW object store. It provides integration with various environments ( OpenStack ... ) and components to be used by third party puppet modules that depend on a Ceph cluster.

Setup

Implementation

A blueprint contains an inventory of what is desirable. It was decided to start from scratch and implement one module at a time.

Limitations

Use Cases

Development

git clone https://github.com/stackforge/puppet-ceph.git
cd puppet-ceph
sudo gem install bundler
bundle install

The developer documentation of the puppet-openstack project is the reference:

Mailing lists:

IRC channels:

  • irc.freenode.net#puppet-openstack
  • irc.oftc.net#ceph-devel

Beaker Integration Tests

Relies on rspec-beaker and tests are in spec/acceptance. It also requires Vagrant and Virtualbox .

BUNDLE_PATH=/tmp/vendor bundle install
BUNDLE_PATH=/tmp/vendor bundle exec rspec spec/acceptance

The BEAKER_set environment variable contains the resource set of linux distribution configurations for which integration tests are going to be run. Available values are

  • two-ubuntu-server-1204-x64
  • ubuntu-server-1204-x64
  • two-centos-64-x64
  • centos-64-x64

The default is

BUNDLE_PATH=/tmp/vendor \
BEAKER_set=two-ubuntu-server-1204-x64 \
bundle exec rspec spec/acceptance

Deprecated Integration Tests

Relies on rspec-system-puppet and tests are in spec/system. It runs virtual machines and requires 4GB of free memory and 10GB of free disk space.

The RELEASES environment variable contains the list of ceph releases for which integration tests are going to be run. The default is

BUNDLE_PATH=/tmp/vendor \
RELEASES='dumpling firefly giant' \
bundle exec rake spec:system

The RS_SET environment variable contains the resource set of linux distribution configurations for which integration tests are going to be run. Available values are

  • two-ubuntu-server-12042-x64
  • one-ubuntu-server-12042-x64
  • two-centos-65-x64
  • one-centos-65-x64

The default is

BUNDLE_PATH=/tmp/vendor \
RS_SET=two-ubuntu-server-12042-x64 \
bundle exec rake spec:system

The MACHINES environment variable contains the list of virtual machines that are used for integration tests. This needs to match with the RS_SET above. I.e. for a two-* RS_SET use 2 machines. The default is

MACHINES='first second' \
bundle exec rake spec:system

On success it should complete with

...
=end=============================================================
Finished in 4 minutes 1.7 seconds
1 example, 0 failures

Example invocation of gerritexec:

script='bash -c "'
script+='mv Gemfile-rspec-system Gemfile ; bundle install ; '
script+='RS_SET=two-ubuntu-server-12042-x64 bundle exec rake spec:system ; '
script+='RS_SET=two-centos-65-x64 bundle exec rake spec:system ; '
script+='" > /tmp/out 2>&1 ; r=$? ; '
script+='echo https://pypi.python.org/pypi/gerritexec output: ; '
script+='pastebinit /tmp/out ; '
script+='exit $r #'
GEM_HOME=~/.gems gerritexec \
   --hostname review.openstack.org \
   --verbose --username puppetceph \
   --script "$script" \
   --project stackforge/puppet-ceph

Contributors

Release Notes