Forge Home

stoplight

This module manages Stoplight, a powerful build monitoring tool.

10,431 downloads

10,141 latest version

3.8 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.0.3 (latest)
  • 1.0.2
released May 10th 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'willdurand-stoplight', '1.0.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add willdurand-stoplight
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install willdurand-stoplight --version 1.0.3

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

willdurand/stoplight — version 1.0.3 May 10th 2013

puppet-stoplight

Build
Status

This module manages Stoplight, a powerful build monitoring tool.

Installation

This module depends on:

Get the modules above, and that one by cloning it:

git clone git://github.com/willdurand/puppet-stoplight.git modules/stoplight

USAGE - Basic management

First of all, you need a working Ruby environment:

class {
  'rvm': ;
}

rvm_system_ruby { '1.9.3-p194':
  ensure      => present,
  default_use => false,
}

You also need git, g++ and make.

Now you can install Stoplight using this Ruby version:

class { 'stoplight':
  ruby_version => '1.9.3-p194'
}

USAGE - Managing servers

Configuring a new server into Stoplight is really easy, just add the following lines to your configuration:

stoplight::server { 'propel':
  provider => 'jenkins',
  url      => 'http://ci.propelorm.org',
}

stoplight::server { 'http://127.0.0.1:8080':
  provider         => 'jenkins',
  ignored_projects => [ '/-deploy$/', '/-package$/' ],
}

Availables parameters are: provider, url, projects and ignored_projects.

Running the tests

Install the dependencies using Bundler:

BUNDLE_GEMFILE=.gemfile bundle install

Run the following command:

BUNDLE_GEMFILE=.gemfile bundle exec rake spec

License

puppet-stoplight is released under the MIT License. See the bundled LICENSE file for details.