You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 19 Current »

Introduction

Usually, Jenkins controller and Jenkins agent are located in the same network, therefore it is quite easy to adopt Jenkins agents using SSH. This time we will talk about the situation when Jenkins controller and bunch of other DevOps tools are running in "network A" and Jenkins agents are running in "network B". Quite often connections from A to B are rejected, however, connections from B to A are accepted. There might be various reasons, in general, network B has elevated security expectations. The typical setup is Jenkins controller located in public cloud and Jenkins agent(s) located in a private customer network. Private customer network might be needed in such because some sort of higher data privacy requirements must be matched or some specialised hardware is present in customer premises and it cannot be accessible directly from the public internet.

Solution

The recommended solution is controller/agent setup, when the controller runs in a public environment and agent is running on a server located in a private network. The agent is also called "on-premise executor" (OPE). Jobs are then performing jobs/tasks on such agent in internal/private networks. Jenkins Agent has an active connection from the internal network to internet accessible Jenkins Master via recommended JNLP port tcp/9000 and keeps listening to builds/jobs. Port can be changed, but we will keep talking about 9000. NO direct or NAT network connection is required from the internet to internal network. It is a secure and simple solution.

jenkins-agent-master

Requirements

Network

  • firewall opening for port 9000/tcp from relevant source agent(s) IP(s) or network segment/pool towards internet in general (sometimes referred as destination )
    • network layer (using TDS portal network functionality)
    • operating system layer (firewalld if needed)

Jenkins controller running in public

  • Decide which port you are going to use as we use fixed setup in our case. We are choosing 9000 in this guide.
  • Make sure to have TCP port 9000 opened:
    • on network/firewall layer - Firewall
      • firewall opening for port 9000/tcp from relevant source agent(s) IP(s) or network(s)

        We do not recommend too wide opening for 0.0.0.0 when you have Jenkins deployed in public cloud accessible from internet as it could be unnecessarily yet another potential target of attacks.

    • in OS level, for example firewalld:

      firewall-cmd --add-port=9000/tcp --permanent
      firewall-cmd --reload

      This generic 9000/tcp opening is fine if you are controlling access of each and every source trusted IP or IP pool(s) via portal firewall settings. Otherwise we recommend narrowing down the scope to your trusted source IP or IP pool(s).

  • Listening on JNLP port tcp/9000
  • node added according to the following steps
    • Go to https://jenkins.xxx.tds.customerx.com/computer/new (remember to use correct URL of your Jenkins controller)
    • Set "Node name" to relevant name useful for you, we will use "node01" for simplicity of this example. Here are some recommended examples for inspiration - short name (node01), FQDN (node01.xxx.tds.customerx.com). 
    • Choose "Permanent"
    • Set "Remote root directory" to "/data/jenkins-agent"
    • Set "Launch method" to "Launch agent by connecting it to the controller" (previously called "Launch agent via Java Web Start")
    • Click "Save"
  • now go to newly created node and copy secret/token for connecting agent
    • Go to https://jenkins.xxx.tds.customerx.com/computer/XXX (remember to use correct URL of your Jenkins controller and replace XXX with the name of your node)
    • You will see something like in very first block called "Run from agent command line: (Unix)":

      curl -sO https://jenkins.xxx.tds.customerx.com/jnlpJars/agent.jar
      java -jar agent.jar -jnlpUrl https://jenkins.xxx.tds.customerx.com/computer/node01/jenkins-agent.jnlp -secret 8b2911d98400bad5d45635b812b5f2e8e7c1d216bbbae9422a3ba57c691bf762 -workDir "/data/jenkins-agent"

      Please copy only the secret, which is for example in this case "8b2911d98400bad5d45635b812b5f2e8e7c1d216bbbae9422a3ba57c691bf762"

Jenkins agent node (slave) or so called on-premise executor

  • This agent can be running on a server next to your Jenkins controller/master or in the internal network(s)
  • agent service(s) with service auto-start to assure automatic re-connect to Jenkins controller at any time even after server reboot
    • Install dependencies
      • CentOS 7

        yum install java-11-openjdk-devel git -y
        # you can install also other dependencies that will be required for your jobs
      • CentOS 8/9

        yum install java-17-openjdk-devel git -y
        # you can install also other dependencies that will be required for your jobs
      • Ubuntu

        apt-get update; apt-get install openjdk-11-jdk git -y
        # you can install also other dependencies that will be required for your jobs
    • Installing agent
      • Prepare a folder for config

        mkdir -p /data/configs
        mkdir -p /opt/jenkins-agent
      • Create service file /opt/jenkins-agent/jenkins-agent.service

        jenkinsope.service
        [Unit]
        Description=Jenkins Agent - On Premise Executor
        Wants=network.target
        After=network.target
        
        [Service]
        # EnvironmentFile cannnot be used on Debian/Ubuntu anymore - Reference: https://github.com/varnishcache/pkg-varnish-cache/issues/24
        # So we are using drop-in config /etc/systemd/system/jenkins-agent.service.d/local.conf
        ExecStart=/usr/bin/java -Xms${JAVA_MEMORY} -Xmx${JAVA_MEMORY} -jar /opt/jenkins-agent/agent.jar -jnlpUrl ${CONTROLLER_URL}/computer/${NODE_NAME}/jenkins-agent.jnlp -secret ${SECRET} -workDir "${WORK_DIR}"
        User=jenkins-agent
        Restart=always
        RestartSec=10
        StartLimitInterval=0
        
        [Install]
        WantedBy=multi-user.target
      • Create config file /data/configs/jenkins-agent.conf

        JAVA_MEMORY=512m
        CONTROLLER_URL=https://jenkins.xxx.tds.customerx.com
        NODE_NAME=XXX
        SECRET=8b2911d98400bad5d45635b812b5f2e8e7c1d216bbbae9422a3ba57c691bf762
        WORK_DIR=/data/jenkins-agent
      • Create script /opt/jenkins-agent/jenkins-agent-install

        TODO
      • Run install script

        chmod +x /opt/jenkins-agent/jenkins-agent-install
        /opt/jenkins-agent/jenkins-agent-install
    • Uninstalling agent (for cleanup purposes or if you messed up something)
      • Create script /opt/jenkins-agent/jenkins-agent-uninstall

        systemctl disable jenkins-agent
        systemctl stop jenkins-agent
        rm -f /usr/lib/systemd/system/jenkins-agent.service
        rm -rf /etc/systemd/system/jenkins-agent.service.d
        systemctl daemon-reload
        userdel -r jenkins-agent
        rm -rf /data/jenkins-agent
      • Run install script

        chmod +x /opt/jenkins-agent/jenkins-agent-uninstall
        /opt/jenkins-agent/jenkins-agent-uninstall

Inspired by

Troubleshooting

Java Runtime class files recognition errors

Jenkins agent installing procedure tries to be smart enough to detect and use correct Java (OpenJDK 11 or 17), however in some cases it might fail.

Symptoms

  • service jenkins-agent is constantly failing

    [root@node01 ~]# systemctl status jenkins-agent
    ● jenkins-agent.service - Jenkins Agent - On Premise Executor
       Loaded: loaded (/usr/lib/systemd/system/jenkins-agent.service; enabled; vendor preset: disabled)
      Drop-In: /etc/systemd/system/jenkins-agent.service.d
               └─local.conf
       Active: activating (auto-restart) (Result: exit-code) since Sun 2023-10-08 13:40:53 UTC; 1s ago
      Process: 9960 ExecStart=/usr/bin/java -Xms${JAVA_MEMORY} -Xmx${JAVA_MEMORY} -jar /opt/jenkins-agent/agent.jar -jnlpUrl ${CONTROLLER_URL}/computer/${NODE_NAME}/jenkins-agent.jnlp -secret ${SECRET} -workDir ${WORK_DIR} (code=exited, status=1/FAILURE)
     Main PID: 9960 (code=exited, status=1/FAILURE)
    
    Oct 08 13:40:53 loadgen systemd[1]: Unit jenkins-agent.service entered failed state.
    Oct 08 13:40:53 loadgen systemd[1]: jenkins-agent.service failed.
  • following errors can be spotted in journal

    journalctl -fu jenkins-agent
    
    Oct 08 13:51:57 loadgen systemd[1]: jenkins-agent.service holdoff time over, scheduling restart.
    Oct 08 13:51:57 loadgen systemd[1]: Stopped Jenkins Agent - On Premise Executor.
    Oct 08 13:51:57 loadgen systemd[1]: Started Jenkins Agent - On Premise Executor.
    Oct 08 13:51:57 loadgen java[11258]: Error: A JNI error has occurred, please check your installation and try again
    Oct 08 13:51:57 loadgen java[11258]: Exception in thread "main" java.lang.UnsupportedClassVersionError: hudson/remoting/Launcher has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
    Oct 08 13:51:57 loadgen java[11258]: at java.lang.ClassLoader.defineClass1(Native Method)
    ...
    Oct 08 13:51:57 loadgen java[11258]: at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:621)
    Oct 08 13:51:57 loadgen systemd[1]: jenkins-agent.service: main process exited, code=exited, status=1/FAILURE
    Oct 08 13:51:57 loadgen systemd[1]: Unit jenkins-agent.service entered failed state.
    Oct 08 13:51:57 loadgen systemd[1]: jenkins-agent.service failed.

Workaround

  • Switch default java to JDK 11 or 17

    update-alternatives --config java
  • Inform other users of system that you made that change, as it might affect builds that were dependent on previously configured java version.
  • No labels