As the question states, I'd like a way to pass an option to set the name of the agent, so that I don't have to manually do it every time in the Bamboo Server.
We're currently using Docker to run the agent in a container; so it's setting the name as a unique identifier for the container, by default.
Hi @xil355,
You can either run the container with
--hostname
or modify
bamboo-agent-home/bamboo-agent.cfg.xml
<agentDefinition>
<id>1114113</id>
<name>agent</name>
<description>Remote agent on host agent</description>
</agentDefinition>
For example here I used
--hostname agent
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.