This gem provides a DSL for building Concourse CI pipelines.
Rubygems release docs can be found above, or head over to rudder.jhmcstanton.com for the latest docs from HEAD.
The intent of this project is to allow Concourse users to build complex pipelines with a fully featured language rather than error-prone YAML files.
Related goals:
- Support referencing first-class concourse features (
resource-types
,resources
,jobs
, etc) inside pipeline definition (for example, a task may be able to use a previously defined resource as an input by passing a reference to it, rather than just its name) - Support breaking pipeline definitions into multiple pieces to allow composing them together
- Small amounts of pipeline validation
Currently this project supports building a pipeline from a single definition file. Pipelines can utilize other pipeline definitions by either entirely importing the contents or borrowing only specific pieces.
TODOs:
- More tests & add a coverage tool
- Add CI
- Tieing this project directly to concourse. The ecosystem is fairly large, so supporting all resources the community creates or each new feature of concourse would be arduous. Instead this aims to be general, at the cost of allowing users to create incorrect pipelines
Use bundle exec rake docker_up
to stand up a local concourse instance
for pipeline development. Credit goes to Stark and Wayne for their excellent
Concourse tutorial that
includes the docker-compose.yml
found here.
Add this line to your application's Gemfile:
gem 'rudder'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rudder
See the DSL class documentation for specific details.
Compile your Rudder
definitions using the provided CLI tool:
Usage: rudder [options]
-o, --output YAML_PATH YAML_PATH to write the pipeline config
-c, --config RUDDER_CONFIG Path to the RUDDER_CONFIG file to evaluate
-l CONCOURSE_VARS, Path to the CONCOURSE_VARS yaml file
--load-vars-from
-v, --version Show version
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Build the docs with
bundle exec rake yard
Bug reports and pull requests are welcome on GitHub at https://github.com/jhmcstanton/rudder.
The gem is available as open source under the terms of the MIT License.