Hello!
I'm configuring Bamboo for deployment to different environments (development, qa, staging, production). I'm looking for a way to have a condition to exist before enabling a build, for example if a certain JIRA ticket is closed then (and only then) we should deploy in production.
Currently I have a separate project for each environment, each with its build plan. I have granted specific users the ability to run a build&deploy (since specific groups should be able to deploy only on their specified environments), but the idea would be to have an OK from several people before enabling the production deployment.
Any suggestion regarding how to accomplish such a thing is much appreciated.
Kind regards.
Hi Nicolas,
I think you'll not be able to do that directly in Bamboo, the easiest way would be to set these conditions in JIRA and then trigger the deployment calling a Bamboo REST API using a Webhook
Hello Gabriel,
Thanks for your reply. The thing is, we mustn't run the deploy task automatically. Your reply did give me an idea: we could set the conditions in JIRA and then call the bamboo API to mark the release as 'approved' by user JIRA, and then put a script that checks if user JIRA has approved the release. Does that make sense?
Kind regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nicolas,
Yes, your idea makes sense. I never tried to implement this before, but I think the most challenging thing will be to get the {deploymentVersionId} from the specific release you want to edit.
As you can see, the API endpoints require this info:
Show current status:
http://<bambooURL>/rest/api/latest/deploy/version/{deploymentVersionId}/status
Change status:
http://<bamboo URL>/rest/api/latest/deploy/version/{deploymentVersionId}/status/UNKNOWN|APPROVED|BROKEN|INCOMPLETE
Interesting resource:
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I tried by https://<bamboo URL>/deploy/viewDeploymentVersion.action?versionId=87648402
But the number 87648402, is not the deploymentVersionID,
Did you get any method to extract the deploymentVersionID?
Thank you
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.