Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
Downloads:
7,837
Downloads of v 18.5.0:
214
Last Update:
11 May 2018
Package Maintainer(s):
Software Author(s):
- GoCD Team
Tags:
gocd cd continuous-delivery adminGoCD Agent
This is not the latest version of GoCD Agent available.
Downloads:
7,837
Downloads of v 18.5.0:
214
Maintainer(s):
Software Author(s):
- GoCD Team
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
GoCD Agent 18.5.0
This is not the latest version of GoCD Agent available.
All Checks are Passing
2 Passing Test
To install GoCD Agent, run the following command from the command line or from PowerShell:
To upgrade GoCD Agent, run the following command from the command line or from PowerShell:
To uninstall GoCD Agent, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download gocdagent --internalize --version=18.5.0 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade gocdagent -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade gocdagent -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure gocdagent installed
win_chocolatey:
name: gocdagent
state: present
version: 18.5.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'gocdagent' do
action :install
version '18.5.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: gocdagent,
Version: 18.5.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller gocdagent
{
Name = 'gocdagent'
Ensure = 'Present'
Version = '18.5.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'gocdagent':
provider => 'chocolatey',
ensure => '18.5.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install gocdagent version="18.5.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 11 May 2018.
Installs GoCD agent on Windows
Install Arguments
The following install arguments can be set:
/START_AGENT
- Whether the agent service should start after installation. Set to NO (case-sensitive) to disable starting up the service after installation./SERVERURL
- The go server url to which the agent should connect to. It should be in the formathttps://go-server-host:go-server-ssl-port/go
. The value must by surreounded by double quotes./GO_AGENT_JAVA_HOME
- JAVA_HOME/D
- the gocd agent working directory
These parameters can be passed to the installer with the use of --ia
.
$packageArgs = @{
packageName = 'gocdagent'
installerType = 'exe'
url = 'https://download.gocd.org/binaries/18.5.0-6679/win/go-agent-18.5.0-6679-jre-32bit-setup.exe'
checksumType = 'sha256'
checksum = '97edddda1004c081557f4afaf337cabba7fce216b5b4001ea94f099a32c6b656'
url64 = 'https://download.gocd.org/binaries/18.5.0-6679/win/go-agent-18.5.0-6679-jre-64bit-setup.exe'
checksumType64 = 'sha256'
checksum64 = 'b0c5f52b31c6c0f6cd24b19a347b2ea8d5154a482f64bd46524de33216e0a3e3'
silentArgs = '/S'
validExitCodes = @(0)
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- gocdagent.18.5.0.nupkg (9ae130e145b5) - ## / 59
- go-agent-18.5.0-6679-jre-64bit-setup.exe (b0c5f52b31c6) - ## / 56
- go-agent-18.5.0-6679-jre-32bit-setup.exe (97edddda1004) - ## / 63
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
GoCD Agent 21.1.0 | 20 | Tuesday, January 12, 2021 | Approved |
GoCD Agent 20.10.0 | 46 | Tuesday, November 24, 2020 | Approved |
GoCD Agent 20.9.0 | 19 | Tuesday, November 10, 2020 | Approved |
GoCD Agent 20.8.0 | 42 | Tuesday, September 22, 2020 | Approved |
GoCD Agent 20.7.0 | 36 | Tuesday, August 25, 2020 | Approved |
GoCD Agent 20.6.0 | 62 | Wednesday, July 29, 2020 | Approved |
GoCD Agent 20.5.0 | 120 | Tuesday, June 23, 2020 | Approved |
GoCD Agent 20.4.0 | 40 | Friday, May 29, 2020 | Approved |
GoCD Agent 20.3.0 | 114 | Wednesday, April 22, 2020 | Approved |
GoCD Agent 20.2.0 | 104 | Wednesday, March 18, 2020 | Approved |
GoCD Agent 20.1.0 | 269 | Thursday, January 30, 2020 | Approved |
GoCD Agent 19.12.0 | 126 | Monday, December 23, 2019 | Approved |
GoCD Agent 19.11.0 | 64 | Wednesday, December 4, 2019 | Approved |
GoCD Agent 19.10.0 | 75 | Monday, November 4, 2019 | Approved |
GoCD Agent 19.9.0 | 83 | Thursday, September 26, 2019 | Approved |
GoCD Agent 19.8.0 | 71 | Monday, September 9, 2019 | Approved |
GoCD Agent 19.7.0 | 87 | Thursday, August 1, 2019 | Approved |
GoCD Agent 19.6.0 | 61 | Monday, July 22, 2019 | Approved |
GoCD Agent 19.5.0 | 91 | Tuesday, June 11, 2019 | Approved |
GoCD Agent 19.4.0 | 103 | Monday, May 27, 2019 | Approved |
GoCD Agent 19.3.0 | 139 | Wednesday, May 15, 2019 | Approved |
GoCD Agent 19.2.0 | 167 | Wednesday, March 6, 2019 | Approved |
GoCD Agent 19.1.0 | 138 | Tuesday, January 29, 2019 | Approved |
GoCD Agent 18.12.0 | 248 | Wednesday, December 19, 2018 | Approved |
GoCD Agent 18.11.0 | 123 | Monday, November 26, 2018 | Approved |
GoCD Agent 18.10.0 | 183 | Monday, October 15, 2018 | Approved |
GoCD Agent 18.9.0 | 163 | Tuesday, September 11, 2018 | Approved |
GoCD Agent 18.8.0 | 114 | Tuesday, September 4, 2018 | Approved |
GoCD Agent 18.7.0 | 163 | Monday, July 23, 2018 | Approved |
GoCD Agent 18.6.0 | 205 | Monday, June 11, 2018 | Approved |
GoCD Agent 18.5.0 | 214 | Friday, May 11, 2018 | Approved |
GoCD Agent 18.4.0 | 167 | Wednesday, May 9, 2018 | Approved |
GoCD Agent 18.3.0 | 199 | Thursday, April 19, 2018 | Approved |
GoCD Agent 18.2.0 | 465 | Thursday, March 8, 2018 | Approved |
GoCD Agent 18.1.0 | 295 | Wednesday, January 24, 2018 | Approved |
GoCD Agent 17.12.0 | 427 | Friday, December 8, 2017 | Approved |
GoCD Agent 17.11.0 | 305 | Monday, October 30, 2017 | Approved |
GoCD Agent 17.10.0 | 301 | Tuesday, September 12, 2017 | Approved |
GoCD Agent 17.9.0 | 270 | Tuesday, September 5, 2017 | Approved |
GoCD Agent 17.8.0 | 293 | Wednesday, August 2, 2017 | Approved |
GoCD Agent 17.7.0 | 352 | Wednesday, June 28, 2017 | Approved |
GoCD Agent 17.6.0 | 268 | Tuesday, June 27, 2017 | Approved |
GoCD Agent 17.5.0 | 352 | Friday, June 2, 2017 | Approved |
GoCD Agent 17.4.0 | 331 | Tuesday, May 23, 2017 | Approved |
GoCD Agent 17.3.0 | 322 | Tuesday, May 23, 2017 | Approved |
Copyright 2017 ThoughtWorks, Inc.
This package has no dependencies.
Ground Rules:
- This discussion is only about GoCD Agent and the GoCD Agent package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or GoCD Agent, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.