Forge Home

go_ci

Setup go for continuous integration

9,774 downloads

9,774 latest version

2.1 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.0 (latest)
released May 17th 2014

Start using this module

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

Add this module to your Puppetfile:

mod 'rajashree-go_ci', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add rajashree-go_ci
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install rajashree-go_ci --version 1.0.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

Documentation

rajashree/go_ci — version 1.0.0 May 17th 2014

go_ci

####Table of Contents

  1. Overview - What is the go_ci module?
  2. Module Description - What does the module do?
  3. Setup - The basics of getting started with go_ci
  4. Supported on

##Overview

The go_ci module allows you to setup go-server and go-agent to support continuous integration and continuous delivery on your project.

##Module Description

Go is a product that ThoughtWorks Studios (the product group of ThoughtWorks) has built over the last 6 years to support continuous delivery. It helps create and manage automated deployment pipelines. It supports automating the entire build-test-release process from check-in to deployment. It is open-source, now freely available under a BSD-style license. Here is the link to the website

##Setup

This module assumes that hiera is supported. To install Go server and Go agent, following values are needed to be provided in hiera under the key 'go_ci'

1. version
2. build
3. server_ip

For example,

    go_ci:
        version: 14.1.0
        build: 18882
        server_ip: 127.0.0.1

To install Go server, just include following class in puppet manifest

    include go_ci::server

Similarly to install Go agent, just include following class in puppet manifest

    include go_ci::agent

##Supported On This module works and has been tested on ubuntu-12.04 (64 bit)