Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,552,696
Community Members
 
Community Events
184
Community Groups

How to call a manual stage with costum variable API curl call

Edited

Hello how can i call this from a curl call? 

The typical  

curl -X POST --user admin:admin "http://localhost:8085/rest/api/latest/queue/PROJ-PLAN?executeAllStages=true&bamboo.variable.myVariable=newValue" 

does not appear to work when trying to run a manual stage

curl -D- -u USERNAME:PASSWORD -p -H "Content-Type: application/json" -d '?stageB' -f -X PUT "https://COMPANY.atlassian.net/builds/rest/api/latest/queue/${bamboo_buildResultKey}"

I need to mimic with a curl call what we can do in the interface by setting a Variable when running a manual stage

 

1 answer

1 accepted

1 vote
Answer accepted
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Aug 09, 2018

Hi @Daniel Mendes,

Please, run the following instead:

# Continue partially done build. Effectively, this method adds build to the build queue, so is not guarantied 
# that build would be executed immediately. Depending on currently executed builds and length of build queue,
# build may be executed when queue would be drained. Additional variables could be passed to this method only
# query parameters (variableName=variableValue). Variables defined in Bamboo as global variables or
# plan variables MUST be prefixed with bamboo.variable ie. bamboo.variable.myVariable=valueForMyVariable. When
# global or plan variables would be passed to this method, will override values valid for previous build
# execution (override).

# replace USERNAME and PASSWORD to authenticate against Bamboo
# replace bamboo.myVar=cURL in case you want to provide build with particular Bamboo variable
# replace http://localhost:8085 with Bamboo's Base URL
# replace PROJ-PLAN-1 with build result you would like to trigger manual stage
# repalce STAGENAME with the name of your stage, if name has space, replace it with plus sign, e.g:
#  Manual Stage, would result into Manual+Stage
curl -k -u USERNAME:PASSWORD \
     -H "Content-type: application/json" \
     -H "Accept: application/json" \
     -d 'bamboo.myVar=cURL' \
     -X PUT 'http://localhost:8085/rest/api/latest/queue/PROJ-PLAN-1?stage=STAGENAME&executeAllStages=true'
    
# consuming variable in build task (i.e Script task)
echo ${bamboo.myVar}

# response
cURL

Reference: https://docs.atlassian.com/atlassian-bamboo/REST/6.6.1/#d2e3903

Kind regards,

Rafael

Hi,

I tried that already, and it does not set the variable for the next stage.

If i start the pipeline it will set the variable, but continuing the pipeline when it is stopped on a manual stage does not set the Variable and in the metadata it is not there as well.

This works

 curl -k -u ${bambootoken} \
-d "bamboo.MYVAR=somethingsomething" \
-X POST "https://localhost:8085/rest/api/latest/queue/PRJ-P1"

but the goal is to continue a build stage not to trigger the plan so  

 curl -k -u ${bambootoken} \
-H "Content-type: application/json" \
-H "Accept: application/json" \
-d "bamboo.MYVAR=somethingsomething" \
-X PUT "https://localhost:8085/rest/api/latest/queue/PRJ-P1-88?stage=Deploy&executeAllStages=true"

is not setting the variable, it triggers the stage but the variable is not set and echo inside the plan returns the previous value not the one that is passed in the curl call.

rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Aug 10, 2018

Hi @Daniel Mendes,

In order to continue the build, you must specify the build number as mentioned in previous comment, e.g: PROJ-PLAN-1

-X PUT 'http://localhost:8085/rest/api/latest/queue/PROJ-PLAN-1?stage=STAGENAME&executeAllStages=true'

Kind regards,

Rafael

Hi Rafael I am sorry it was my mistake in writing the command, I tried with the build number the variable  passed in -d  is not taken into account using the PUT method.

Did you test this.... I am on ver 6.5 of Bamboo

The only thing that finally worked was to put it as a url query parameter thank you for pointing me to the documentation, in the end it helped

-X PUT 'http://localhost:8085/rest/api/latest/queue/PROJ-PLAN-1?stage=STAGENAME&executeAllStages=true&bamboo.variable.EXT_URL=http://myexternalurl'

 

rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Aug 10, 2018

Hi @Daniel Mendes,

Thank you for your update.

I am glad it is working for you now. If you also agree, please mark this answer as resolved so others facing the same issue will land to the correct answer / thread.

Kind regards,

Rafael

Like Steffen Opel _Utoolity_ likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events