How do I select a Bamboo Remote Agent with Bamboo Specs

Paul June 7, 2018

I have had a query from one of our users who has started using Java Specs in Bamboo.  When creating a 'spec' for deployment he wants to be able to select a remote agent but can't see a way of doing this. Is this possible? 

Many Thanks

Paul.

1 answer

1 accepted

0 votes
Answer accepted
Gabriel Ribeiro
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 7, 2018

Hi Paul,

One possibility is to add a custom capability to your agents and then set this capability as a job requirement.

For example, I've added a custom capability called agent with the value "agent1" to one of my agents and in my specs code I defined this capability as a job requirement:

 public Plan plan() {
final Plan plan = new Plan(new Project()
.key(new BambooKey("PROJ"))
.name("PROJECT"),
"PLANTEST",
new BambooKey("PTES"))
.stages(new Stage("Default Stage")
.jobs(new Job("Default Job",
new BambooKey("JOB1"))
.requirements(new Requirement("agent")
.matchValue("agent1")
.matchType(Requirement.MatchType.EQUALS))));
return plan;
}

You can do the same thing for deployment projects.

Is this a feasible solution for you? 

thanks

Paul June 11, 2018

Hi Gabriel, Many thanks for your reply, I am waiting to hear back from the user. I will get back to you as soon as I hear from them.

Kind regards

Paul

Paul June 12, 2018

Hi Gabriel,

Just heard back and your solution worked. Thank you for your help it is very much appreciated.

kind regards

Paul

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events