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

Compare with Current View Page History

« Previous Version 3 Next »

Jenkins Slaves

Slaves are computers that are set up to build projects for a Jenkins Master

Jenkins runs a separate program called “slave agent” on slaves. When slaves are registered to a master, the master starts distributing load to slaves by scheduling jobs to run on slaves if the jobs are set to run on them. 

Term Node is used to refer to all machines that are part of Jenkins grid, slaves and master. 

Two types of slaves are currently connected to Akraino Jenkins and handling different tasks depending on the purpose of connecting the slave.

  • Slaves hosted in Community Lab.
  • Slaves hosted in Validation Lab.


Slaves without red cross next to computer icon are fully functional.

Connecting Slaves to Akraino Jenkins

The method that is normally used for connecting slaves to Jenkins requires direct SSH access to servers. This is the method that is used for connecting slaves hosted in LF Lab.

Connecting slaves using direct SSH access can become a challenge given that Akraino has number of different Validation labs provided by community as mentioned in previous section. All these labs have different security requirements which can increase the effort and the time needed for connecting slaves to Jenkins. In order to reduce the effort and the time needed for connecting slaves and streamline the process, it has been decided to connect slaves using Java Network Launch Protocol (JNLP).

Connecting Slaves from LF Lab to Akraino Jenkins

Slaves hosted in LF handled by LF. All the requests and questions regarding these slaves should be submitted to Akraino Helpdesk.

Connecting Slaves from Community Labs to Akraino Jenkins

As noted in corresponding section, slaves from Community Lab are connected using JNLP. Via JNLP, slaves open connection towards Jenkins Master instead of Jenkins Master accessing to them directly.

Servers connecting to Akraino Jenkins using this method must have access to internet.

Please follow below steps to connect a slave to Akraino Jenkins.

  1. Create a user named Jenkins on the machine you want to connect to Akraino Jenkins and give the user sudo rights.
  2. Install needed software on the machine you want to connect to Akraino Jenkins as slave.


  • openjdk 8
  • monit


  1. If the slave will be used for running virtual deployments, Functest, and Yardstick, install below software and make Jenkins user the member of the groups.


  • docker
  • libvirt


  1. Create slave root in Jenkins user home directory.

mkdir -p /home/jenkins/akraino/slave_root

  1. Clone Akraino Releng Git repository.

mkdir -p /home/jenkins/Akraino/repos

cd /home/jenkins/Akraino/repos

git clone https://gerrit.akraino.org/gerrit/p/releng.git

  1. Contact LF by sending mail to Akraino Helpdesk and request creation of a slave on Akraino Jenkins. Include below information in your mail.


  • Slave root (/home/jenkins/Akraino/slave_root)
  • Public IP of the slave (You can get the IP by executing curlhttp://icanhazip.com/)
  • PGP Key (attached to the mail or exported to a key server)


  1. Once you get confirmation from LF stating that your slave is created on Akraino Jenkins, check if the firewall on LF is open for the server you are trying to connect to Jenkins.

cp /home/jenkins/Akraino/repos/releng/utils/jenkins-jnlp-connect.sh/home/jenkins/ cd /home/jenkins/ sudo ./jenkins-jnlp-connect.sh -j/home/jenkins -u jenkins -n  <slave name on Akraino Jenkins> -s <the tokenyou received from LF> -f


  • If you receive an error, follow the steps listed on the command output.


  1. Run the same script with test(-t) on foreground in order to make sure no problem on connection. You should see INFO: Connected in the console log.

sudo ./jenkins-jnlp-connect.sh -j /home/jenkins -u jenkins -n <slavename on Akraino Jenkins> -s <the token you received from LF> -t


  • If you receive a connectivity error, then you need to check your firewall and allow outgoing connections for the port.


  1. Kill the Java slave.jar process.
  2. Run the same script normally without test(-t) in order to get monit script created.

sudo ./jenkins-jnlp-connect.sh -j /home/jenkins -u jenkins -n <slavename on Akraino Jenkins> -s <the token you received from LF>

  1. Edit monit configuration and enable http interface. The file to edit is /etc/monit/monitrc on Ubuntu systems. Uncomment below lines.


set httpd port 2812 anduse address localhost # only accept connection from localhost allow localhost # allow localhost to connect to the server and


  1. Restart monit service.
  • Without systemd:

    sudo service monit restart

  • With systemd: you have to enable monit service first and then restart it.

    sudo systemctl enable monit

    sudo systemctl restart monit

  1. Check to see if jenkins comes up as managed service in monit.

sudo monit status

  1. Connect slave to Akraino Jenkins using monit.

sudo monit start jenkins

  1. Check slave on Akraino Jenkins to verify the slave is reported as connected.


  • The slave on Akraino Jenkins should have some executors in “Idle” state if the connection is successful.


Notes

PGP Key Instructions

Public PGP Key can be uploaded to public key server so it can be taken from there using your mail address. Example command to upload the key to key server is

gpg --keyserver hkp://keys.gnupg.net:80  --send-keys XXXXXXX

The Public PGP Key can also be attached to the email by storing the key in a file and then attaching it to the email.

gpg --export -a '<your email address>' > pgp.pubkey

  • No labels