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
Can anyone help me with the api (post )for adding task (Script task) to deployment plan
I am trying to add it through bash script and also through java
Any leads will be helpful
Hi @Akshara Prasad,
I wish it was that simple and I could just provide you with a REST API endpoint for this.
Bamboo provides a way to add and remove tasks from deployments but only if your deployment is configured through specs. There is know public REST API endpoint only to add tasks.
If you don't know specs, I suggest you start with this document:
And run some tests with:
In Java specs the code part to create a script task in a deployment environment would be something like:
.environments(new Environment("MyEnvironment")
.tasks(new ScriptTask()
.description("My script task")
.inlineBody("echo \"Hello World\"")));
I hope that helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome! =]
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.