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.