stoplight
This module manages Stoplight, a powerful build monitoring tool.
Version information
released May 10th 2013
Start using this module
Add this module to your Puppetfile:
mod 'willdurand-stoplight', '1.0.3'
Learn more about managing modules with a PuppetfileDocumentation
willdurand/stoplight — version 1.0.3 May 10th 2013
puppet-stoplight
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.
Dependencies
- ripienaar/concat (0.2.x)
- maestrodev/rvm ()
Copyright (c) 2012-2013 William Durand <william.durand1@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.