cookbook 'gocd_agent', '= 1.1.9'
gocd_agent
(23) Versions
1.1.9
-
Follow0
Install and configure a ThoughtWorks Go CD (GoCD) Agent/Client
cookbook 'gocd_agent', '= 1.1.9', :supermarket
knife supermarket install gocd_agent
knife supermarket download gocd_agent
gocd_agent
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.
package
s
-
unzip
- In some logic branches, theunzip
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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Run the unit tests (
bundle exec rake spec
) - Run test kitchen (
bundle exec kitchen test
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
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.9
- Now setting the
USER
environment variable on Linux.
1.1.8
- Adjusted the
service
resource usage to stop the service before installing so that it is effectively restarted if the service was indeed already installed.
1.1.7
- Added support for setting the
HOME
environment variable on Linux via new attributenode['gocd_agent']['home']
.
1.1.6
- Added support for prepending to the
PATH
environment variable via new attributenode['gocd_agent']['path']
.
1.1.5
- Fixed some instances of using non-existent String method 'trim' instead of 'strip'.
1.1.4
- Drop the newer
:login
attribute from use ofMixlib::ShellOut
... too modern for OpsWorks's Chef 11.10's "mixlib-shellout-1.3"!
1.1.3
- Added better internal testing for Travis CI with
knife cookbook test
1.1.2
- Switched from using backtick-escaped line scripts to
Mixlib::ShellOut
1.1.1
- Added default value searches for
node['gocd_agent']['java_home']
.
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
andjava_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 frompackage
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 usinglazy
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.9 passed this metric
1.1.9 passed this metric