Hi,
We are using Bamboo
Can anyone help us to understand how we can make REST API (PUT request) call from Python to Queue Build Plan? Also we want to pass Variable values from our application server to Bamboo while starting Build.
At present we are using --queuebuild action in non-prod to make this call. However in prod region CLI is not enabled and we will require to use REST API.
Present working CLI call in Python:
bamboo_args = "repository_name:"+Repo_Name+",Techconnect_support_group:"+TechConnect_Group+",Prod_AD_group:"+AD_Group_Prod+",Nonprod_AD_group:"+AD_Group_NonProd+",country:"+country+",dest_bunit:"+dest_bunit+",dest_priority:"+Priority_List+",role:"+Role_list+",fqdn:"+FQDN_List+",host:"+Host_List+",ip:"+IP_List+",domain:"+Domain_List+",environment:"+Env_List+",os:"+OS_List
bamboo_log = config.log_path+"\BambooStatus.txt"
bamboo_return = subprocess.run(
["D:\\Apps\\atlassian-cli-7.0.0-distribution\\atlassian-cli-7.0.0\\bamboo.bat", "--action", "queuebuild",
"--build", "TECOP-REP", "--wait", "--fields", bamboo_args, ">", bamboo_log])
Thanks in Adavnce.
Regards,
Ramesh