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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I note that Bamboo Server doesn't have a .bin installation file, but I am hopeful that there are automation capabilities for the installation of Bamboo.
As an example, following commands can be used to provide an automated installation for Jira & Confluence;
APP_PACKAGE="atlassian-jira-software-8.6.1-x64.bin"
DOWNLOAD_URL="${ATLASSIAN_BASE_URL}\"${APP_PACKAGE}"
VARFILE="/tmp/response.varfile"
echo "${VARFILE}"
echo 'app.install.service$Boolean=true' > "${VARFILE}"
echo 'app.jiraHome='"${JIRA_HOME_DIR}" >> "${VARFILE}"
echo 'existingInstallationDir='"${PREV_INSTALL_DIR}" >> "${VARFILE}"
echo 'launch.application$Boolean=true' >> "${VARFILE}"
echo 'portChoice=default' >> "${VARFILE}"
echo 'sys.adminRights$Boolean=true' >> "${VARFILE}"
echo 'portChoice=default' >> "${VARFILE}"
echo 'sys.adminRights$Boolean=true' >> "${VARFILE}"
echo 'sys.confirmedUpdateInstallationString=false' >> "${VARFILE}"
echo 'sys.installationDir='"${NEW_INSTALL_DIR}" >> "${VARFILE}"
echo 'sys.languageId=en' >> "${VARFILE}"
wget -nc -q -P /tmp "${DOWNLOAD_URL}"
sudo chmod +x /tmp/"${APP_PACKAGE}"
/tmp/"${APP_PACKAGE}" -varfile /tmp/response.varfile -q
Can the Bamboo package also be installed this way?
It's not possible yet.
You can put your voice at feature request https://jira.atlassian.com/browse/BAM-20221
Bamboo team checks interest at feature requests when plan future releases scope.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.