Reputation: 8266
Jenkins has a programmatic mechanism for taking nodes offline, is there an equivalent for Bamboo? Ideally I could trigger an offline disconnect after the agent finishes any currently executing jobs.
What is the programmatic way to disconnect a node in Jenkins?
Upvotes: 0
Views: 330
Reputation: 891
You can achieve this using the Bamboo REST API. Here is a link to the specific call DELETE /agent/{agentId}
.
Upvotes: 2