Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

gocd_agent (23) Versions 1.1.0

Install and configure a ThoughtWorks Go CD (GoCD) Agent/Client

Policyfile
Berkshelf
Knife
cookbook 'gocd_agent', '= 1.1.0', :supermarket
cookbook 'gocd_agent', '= 1.1.0'
knife supermarket install gocd_agent
knife supermarket download gocd_agent
README
Dependencies
Changelog
Quality 100%

gocd_agent GitHub Latest Release Build Status Chef Cookbook

A Chef Cookbook to install and configure a ThoughtWorks Go CD (GoCD) Agent/Client.

Supported Platforms

Verified

  • RHEL: Amazon Linux

Unverified

  • RHEL: RedHat, CentOS, Scientific, Oracle, Fedora, etc.
  • Debian: Debian, Ubuntu, LinuxMint, etc.
  • MacOS X: MacOS X, MacOS X Server, etc.
  • Windows: Windows, MinGW32, MSWin, etc.
  • Solaris: Solaris, Solaris2, OpenSolaris, OmniOS, SmartOS, etc.

Requirements

Other Cookbooks

  • java - GoCD Agents require that OpenJDK/Java 7 is installed.

packages

  • unzip - In some logic branches, the unzip utility method will be used to decompress an archive file.

Attributes

Primary

# The Basics
default[:gocd_agent][:name]    = 'go-agent'
default[:gocd_agent][:version] = '15.2.0'
default[:gocd_agent][:release] = '2248'

# Configure communication with the GoCD Server
default[:gocd_agent][:gocd_server][:host] = '127.0.0.1'
default[:gocd_agent][:gocd_server][:port] = 8153

# Auto-register new GoCD Agents with the GoCD Server?
default[:gocd_agent][:auto_register][:key]          = nil
default[:gocd_agent][:auto_register][:resources]    = []
default[:gocd_agent][:auto_register][:environments] = []
# Requires GoCD 15.2.0 or higher
default[:gocd_agent][:auto_register][:hostname]     = node[:hostname]

Secondary

There are many other attributes specified for this cookbook. To see them in full, review the code: attributes/default.rb

Usage

Include the gocd_agent default recipe to install a GoCD Agent/Client on your system based on the default installation method:

include_recipe 'gocd_agent'

Synonyms: gocd_agent::default, gocd_agent::install

Directed Install Methods

Package

Install the GoCD Agent from official packages [but without using repos]:

# Not necessary to set because it's the default, when available on a platform
node[:gocd_agent][:install_method] = 'package'
include_recipe 'gocd_agent'

# OR:

include_recipe 'gocd_agent::install_from_package'

Binary

Install the GoCD Agent from official prebuilt binaries:

# Not necessary to set because it's the default, when available on a platform
node[:gocd_agent][:install_method] = 'binary'
include_recipe 'gocd_agent'

# OR:

include_recipe 'gocd_agent::install_from_binary'

Source

Install the GoCD Agent from the released source archive:

# Not necessary to set because it's the default, when nothing else is available on a platform
node[:gocd_agent][:install_method] = 'source'
include_recipe 'gocd_agent'

# OR:

include_recipe 'gocd_agent::install_from_source'

Contributing

  1. Fork the repository on GitHub
  2. Create a named feature branch (like add_component_x)
  3. Write your change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass (if applicable)
  6. Submit a Pull Request using GitHub

License

Copyright (c) 2015, James M. Greene (MIT License)

Dependent cookbooks

java ~> 1.31.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

gocd_agent CHANGELOG

This file is used to list changes made in each version of the gocd_agent cookbook.

1.1.0

  • Added new attribute to allow prereqs to NOT be forcibly installed.

1.0.12

  • Modified template for 'autoregister.properties' file to remove excess whitespace.

1.0.11

  • Adding attribute nodes for setting work_dir and java_home on Linux.

1.0.10

  • Fixed another attribute reference issue during Chef Compile phase vs. Converge phase, this time in the service resource.

1.0.9

  • Removed unnecessary version attribute from package installer resource.

1.0.8

  • Fixed issue with node['gocd_agent']['installation_source'] being empty for installers due to their attributes being evaluated during the Chef Compile phase instead of the Converge phase by using lazy attribute evaluation where needed.
  • Removed debugging code.

1.0.7

  • Syntax error fix. Sorry!

1.0.6

  • MOAR DEBUGGING!

1.0.5

  • Added some debugging code into a private recipe for analysis.

1.0.4

  • Shuffled some attribute definitions around to get the correct values propagated.

1.0.3

  • Added a link to the java cookbook dependency

1.0.2

  • Initial release of the gocd_agent cookbook!

Check the Markdown Syntax Guide for help with Markdown.

The Github Flavored Markdown page describes the differences between markdown on github and standard markdown.

Foodcritic Metric
            

1.1.0 passed this metric