I need to trigger deployment with defining deployment environment variables. Is it possible? I tried this but it does not work for my case. Thanks in advance
curl -X POST 'http://localhost:9087/bamboo/rest/api/latest/queue/deployment/?environmentId=1234567&versionId=12121212&bamboo.variable.myvariablename=value'
I know this request is a bit old, but I would like share that this is the right way of doing it.We would need the Bamboo version and the returned error to investigate why it was failing.
I just run the same test on 6.6.2 (I know it is pretty new) and it works just fine:
curl -u <USER>:<PASSWORD> -X POST '<BAMBOO_URL>/rest/api/latest/queue/deployment/?environmentId=1441793&versionId=1540097&bamboo.community=hello'
Example of successful server answer:
{"deploymentResultId":1671170,"link":{"href":"<BAMBOO_URL>/rest/api/latest/deploy/result/1671170","rel":"self"}}
Hi Daniel,
We are using same rest API . But getting below error ,
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><status><status-code>404</status-code><message>null for uri: http://192.168.2.67:8085/rest/api/latest/queue/deployment</message></status>
Can you please help me?
Hey @ishan_walawalkar,
Can you share the full URL used including its parameters?The 404 error might happen when the request is malformed.Can you also share what version of Bamboo is this?Are you using Curl for your request as shared above?
Thanks for your quick response . I was using older version of bamboo hence getting error. I have upgraded now . Its working.
Hello folks,
Until this moment (Bamboo version 6.8.0) It is not possible to set/update custom variables for a deployment using REST API. We do have a feature request to cover this scenario here:
As a workaround, the inject variables task can be used to consume custom variable values from a file in the build working directory.
I hope that helps.
It looks like you're new here. Sign in or register to get started.