You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Gabriel,
Just heard back and your solution worked. Thank you for your help it is very much appreciated.
kind regards
Paul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.