Hi Community,
Is it possible to do a complete unattended Bamboo Server (master) install via script (only)?
From start to running instance (without using a previous install instance) ?
There's a lot of software available where this is possible (Splunk, Jenkins etc). But as far as I can make out from available literature - the first local admin credentials always need to be created via UI for Bamboo.
Any thoughts anyone ??
thanks
Regards
Kai
Hello Kai,
Unfortunately Bamboo doesn't have anything embedded for that so I started experimenting some options a while ago using Python + Mechanize, the script basically needs a fresh Bamboo installation (for my tests I used a Docker container) and uses web scrapping to automate the UI part. I committed what I have so far to a public repo, it needs some polishing but you can use as a reference:
Docker image used:
docker run -d \
--name bamboo \
-v ~/dockerdata/bamboo:/var/atlassian/application-data/bamboo \
-h bamboo \
-p 8085:8085 \
-p 54663:54663 \
dchevell/bamboo
ps. I'm using docker on macOS, it might be needed to adjust the volume biding option.
Link to my project:
It would be great if you could contribute to the project or create a new one and share with us.
thanks
Added to my colleague's update, if you have hosted Bamboo on AWS, you may also use our Bamboo Server EC2 Wizard. This will get your Bamboo server up and running in AWS in less than 10 minutes. You can get this jar file and automate the entire configuration.
In short, to run the wizard, you will just have to execute:
java -jar bamboo-server-ec2-wizard.jar
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.