While attempting to install aqconnect-1.0.jar on a containerized Bamboo image, the installation hangs with a "Unexpected error occurred" message. After referring to the logs in Bamboo, the trail goes cold because no logs are generated.
Only one log is generated. 1 single log which is an ackwkowlegement that the user clicked the link.
To reproduce this error do the following:
Containerize a Bamboo instance in a cloud provider using Kubernetes
Attempt to install aqconnect-1.0.jar
Watch failure happen.
How do I install the aqconnect-1.0.jar? I've attempted to copy it to the plugin folder but it does not show up in the applications list.
There's no other way to install anapplication? Why is this happening?
Hi @Amari
I'm not a Kubernets specialist but I want to share my 2 cents on this one.
How do I install the aqconnect-1.0.jar? I've attempted to copy it to the plugin folder but it does not show up in the applications list.
Please make sure you installed in <Bamboo_Home>/plugins directory.
I was able to get it working as expected following this sequence of commands:
$ docker run -d \
--name="bamboo-6.8.1" \
-v <HOST_DOCKER_FOLDER>/bamboo/6.8.1/home:/var/atlassian/application-data/bamboo \
-p 8085:8085 \
-p 54663:54663 \
dchevell/bamboo:6.8.1
docker stop bamboo-6.8.1
wget https://github.com/accelQ-Inc/accelQ-Connect-Bamboo/releases/download/1.5/aqconnect-1.0.jar
docker cp aqconnect-1.0.jar bamboo-6.8.1:/var/atlassian/application-data/bamboo/plugins/aqconnect-1.0.jar
docker start bamboo-6.8.1
There's no other way to install anapplication? Why is this happening?
You can also install through the UI of your Bamboo instance through Admin >> Overview >> Manage apps >> Upload app.
I'm afraid there is something wrong with the installation process. Please review where the plugin is installed and what are the container first logs at the moment of Bamboo server initialization. The logs should be at <Bamboo_Install>/logs/catalina.out.
I hope that helps.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.