Jenkins agent

  • By Canonical IS DevOps
Channel Revision Published Runs on
latest/stable 37 15 Mar 2024
Ubuntu 22.04 Ubuntu 20.04
latest/edge 42 24 Apr 2024
Ubuntu 22.04 Ubuntu 20.04
juju deploy jenkins-agent
Show information

Platform:

Ubuntu
22.04 20.04

Managing workload inside the charm

The core jenkins agent workload requires 3 main parameters (JENKINS_URL, JENKINS_AGENT and JENKINS_SECRET) and is defined as a 2-step process:

  1. Download the agent binary at JENKINS_URL/jnlpJars/agent.jar and store it in the agent’s home directory
  2. Run the agent binary with the following parameters to register the node with Jenkins
/usr/bin/java -jar agent.jar \\
-jnlpUrl "<jnlp-path-on-jenkins-server>" \\
-workDir "${JENKINS_WORKDIR}" \\
-noReconnect \\
-secret "${JENKINS_SECRET}"

In the charm, this workload is managed using an apt package which installs a systemd service that can be configured via a configuration file.

# File: /etc/systemd/system/jenkins-agent.service.d/override.conf
[Service]
Environment="JENKINS_SECRET=secret"
Environment="JENKINS_URL=url"
Environment="JENKINS_AGENT=node-name"

The service won’t start automatically through the use of the --no-start option during packaging in order to allow flexibility between running the workload as a service and as a standalone executable, located at /usr/bin/jenkins-agent.


Help improve this document in the forum (guidelines). Last updated 3 months ago.