DevOps / Bamboo: Continuous Integration & Deployment Interview Questions
Explain the internal working of Bamboo agent-server communication?
Agents don't wait for the server to push work to them blindly — the relationship is closer to agents checking in and the server assigning work from a queue.
The connection is typically a persistent, authenticated channel over HTTPS. If it drops, the agent shows as offline and any job it was mid-way through is marked as failed/interrupted rather than silently left in limbo, since the server has no way to confirm the work actually completed.
More Related questions...