For an overview about the ROS build farm including how to deploy the necessary machine see the ROS buildfarm wiki page.
This repository implementation for deploying servers for the ROS buildfarm. It typically requires the configurations given as an example in buildfarm_deployment_config.
After the servers have been provisioned you will then want to see the ros_buildfarm project for how to configure Jenkins with ROS jobs.
If you are going to use any of the provided infrastructure please consider signing up for the buildfarm mailing list in order to receive notifications e.g. about any upcoming changes.
To effectively use this there will be three main steps:
- Provision the hardware/VM instances.
- Fork the config repository and update the configuration.
- Deploy the forked configuration onto the machines.
At the end of this process you will have a Jenkins master, a package repository, and N jenkins agents.
The ROS buldfarm deployment is currently based on Ubuntu 16.04 Xenial. The following EC2 instance types are recommended when deploying to Amazon EC2. They are intended as a guideline for choosing the appropriate parameters when deploying to other platforms.
Memory | 30Gb |
Disk space | 200Gb |
Recommendation | r4.xlarge |
Disk space | 200Gb+ |
Recommendation | c3.large or faster |
Disk space | 100Gb |
Recommendation | t2.medium |
Since your config repository will contain secrets such as private keys and access tokens, keep it private!
You can make a private copy of the sample config by following the steps in Duplicating a repository.
If you need to make changes to the puppet itself, you can also fork this repository.
To give access to your private repo you will need to provide authentication from the provisioned machines. You can either add a deploy key and clone via ssh or create a personal access token and use https.
The below example has setup the config repo with token access. And embedded the token in the below URLs. Keep this token secret!
It is recommended to change all the security parameters from this configuration. In particular you should change the following:
-
master::ip
The IP address of the master instance. -
repo::ip
The IP address of the repository instance. -
jenkins::slave::ui_user
andjenkins::slave::ui_pass
are passed to the jenkins::slave puppet module. You may need to update them depending on your agent's security model. See the Slaves section in thepuppet-jenkins
readme and these comments in thepuppet-jenkins
class definition. -
user::admin::password_hash
This is the password for the agent to access the master. On the master this should be the hashed password from above. The easiest way to create this is to setup a jenkins instance. Change the password, then copy the string out of config file on the jenkins server. -
autoreconfigure::branch
If you are forking into a repo and using a different branch name, update the autoreconfigure command to point to the right branch. -
ssh_keys
Configure as many public ssh-keys as you want for administrators to log in. It's recommended to specify at least one for theroot
user. On the repo machine make sure there is at least one key for thejenkins-agent
user matching the ssh private keyjenkins::private_key
provisioned on the master.Example:
ssh_keys: 'admin@foobar': ensure: present key: AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NOaRsdZqqTrCwNR77AQIqwAPYkDfiL1Ou7Pi/qaW9S7UU0Y1KAQ6kWhgJc9RtOhbZKGHbFTqSLT4235TkmPvlZbV2bK8ZViBmqQ3r8vDMhC/+p9Ec9SP8sjv6JcIEWOy5zXPnB3OnHHWXmvZP47rjJY0l76F71fZt3vlvyjz7IrikULmuKcyrE+zulmbSTtfGZhxQRPxZDO/RiOemCPsYo5u/rUMjWH+CkEI0swQlM6QIvjWdfYtNwQT9yo53MXFy5jodhW4YOOncKE4RMOI9Lmu6jE0GmdmSEv486R4ot6iWanx2hk/46zlmX1kSKGWObRdH57H/xIAxvw+PiTd type: ssh-rsa user: root 'upload_access@buildfarm': ensure: present key: AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NOaRsdZqqTrCwNR77AQIqwAPYkDfiL1Ou7Pi/qaW9S7UU0Y1KAQ6kWhgJc9RtOhbZKGHbFTqSLT4235TkmPvlZbV2bK8ZViBmqQ3r8vDMhC/+p9Ec9SP8sjv6JcIEWOy5zXPnB3OnHHWXmvZP47rjJY0l76F71fZt3vlvyjz7IrikULmuKcyrE+zulmbSTtfGZhxQRPxZDO/RiOemCPsYo5u/rUMjWH+CkEI0swQlM6QIvjWdfYtNwQT9yo53MXFy5jodhW4YOOncKE4RMOI9Lmu6jE0GmdmSEv486R4ot6iWanx2hk/46zlmX1kSKGWObRdH57H/xIAxvw+PiTd type: ssh-rsa user: jenkins-agent
-
jenkins-agent::gpg_public_key
The GPG public key matching the private key. This will be made available for download from the repo for verification. -
jenkins-agent::gpg_private_key
The GPG key with which to sign the repository. -
jenkins-agent::reprepro_config
Fill in the correct rules for upstream imports. It should be a hash/dict item with the filename as the key, ensure, and content as elements like below. You can have as many elements as you want for different files.Example:
jenkins-agent::reprepro_config: '/home/jenkins-agent/reprepro_config/empy_saucy.yaml': ensure: 'present' content: | name: empy_saucy method: http://packages.osrfoundation.org/gazebo/ubuntu suites: [saucy] component: main architectures: [i386, amd64, source] filter_formula: Package (% python3-empy)
-
jenkins::private_ssh_key
This ssh private key will be provisioned as an ssh-credential available via the ssh-agent inside a jenkins jobs. This is necessary for access to push content onto the repo machine. It can also be used to access other machines from within the job execution environment. This will require deploying the matching public key to the other machines appropriately. Note: This value should be kept secret! -
credentials::jenkins-agent::username
The name of the credentials. -
credentials::jenkins-agent::id
A UUID for the credentials in the format1e7d4696-7fd4-4bc6-8c87-ebc7b6ce16e5
. -
credentials::jenkins-agent::passphrase
The hashed passphrase for the key. The UI puts this has in if there's no passphrase4lRsx/NwfEndwUlcWOOnYg==
. If you would like to modify these values from the default it will likely be easiest to boot an instance. Change the credentials via the UI, then grab the values out of the config file.
If you would like to be able to clone source and release repositories over git+ssh, add the git-fetch-ssh
credential by setting the following optional parameters:
credentials::git-fetch-ssh::username
The name of the credentialscredentials::git-fetch-ssh::id
A UUID for the credentials in the format1e7d4696-7fd4-4bc6-8c87-ebc7b6ce16e5
credentials::git-fetch-ssh::passphrase
The hashed passphrase for the key. The UI puts this hash in if there's no passphrase:4lRsx/NwfEndwUlcWOOnYg==
credentials::git-fetch-ssh::private_key
An SSH private key that has access to the source and release repositories that the buildfarm will use.
jenkins::slave::num_executors
The number of executors to instantiate on each agent. From current testing you can do one per available core, as long as at least 2GB of memory are available for each executor.ssh_host_keys
Required for uploading to doc job results. You will need to add the host verification for both the name and IP of the repo server.squid-in-a-can::max_cache_size
Optional: The maxium size of the squid cache in Mb. Default: 5000squid-in-a-can::max_cache_object
Optional: The maxiumum size of an object in the squid cache in Mb. Default: 1000
If you would like to clone source and release repositories over git+ssh, set the host keys for the servers that will be used in the ssh_host_keys
parameter.
This parameter is a dictionary mapping server names to host keys.
Host keys can be discovered with the ssh-keyscan -H <hostname>
command.
Example:
ssh_host_keys:
repo: |
repo ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFc/Nq1TAnCl4XC4nFl6QNOLcJLw5vY0lkvMlVULn8jkQPn3iUy59Q2fja+h4lmQlD17iSY3o4luHUYkYKAdHcI=
54.183.65.232: |
54.183.65.232 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFc/Nq1TAnCl4XC4nFl6QNOLcJLw5vY0lkvMlVULn8jkQPn3iUy59Q2fja+h4lmQlD17iSY3o4luHUYkYKAdHcI=
'github.com': |
|1|/F/a+D+AA/y+qf7+IMSwXbvfFZo=|Pygbd2OeNdWzbgAyZK/kwEet9u0= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==
'bitbucket.org': |
|1|VoTP5i1zOk28A+ELJ0XpcMdpiBc=|Y61MET377AK92/9wJzCZhQMoGmw= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw==
Once you have customized all the content of the config repo on each provisioned machine run the following sequence of commands.
Login on the master
machine (using SSH) and then use the following sequence of commands:
sudo su
cd
apt-get update
apt-get install -y git
# Customize this URL for your fork
git clone https://[email protected]/YOUR_ORG/buildfarm_deployment_config.git
cd buildfarm_deployment_config
./install_prerequisites.bash
./reconfigure.bash master
Login on the repo
machine (using SSH) and then use the following sequence of commands:
sudo su
cd
apt-get update
apt-get install -y git
# Customize this URL for your fork
git clone https://[email protected]/YOUR_ORG/buildfarm_deployment_config.git
cd buildfarm_deployment_config
./install_prerequisites.bash
./reconfigure.bash repo
Login on the target agent
machine (using SSH) and then use the following sequence of commands:
sudo su
cd
apt-get update
apt-get install -y git
# Customize this URL for your fork
git clone https://[email protected]/YOUR_ORG/buildfarm_deployment_config.git
cd buildfarm_deployment_config
./install_prerequisites.bash
./reconfigure.bash agent
Repeat this for all agents that you would like to be part of the farm.
Now that you have a running system you will need to add jobs for one or more rosdistros. See the ros_buildfarm repository for more information.
Jenkins is most powerful when you set it up for email notifications. By default we have not provisioned how to send emails, which means that none will be sent. Jenkins will attempt to send via a local mail transfer agent (MTA) if SMTP is not configured. You can install postfix or sendmail to provide a local MTA. If you do setup a local MTA, make sure that you provide proper reverse DNS lookups for your server. And it's also highly recommended to make sure to add SPF entries for your server to make sure that the automated emails are not caught in the spam filter.
When you enable email for your server, make sure to update the administrator email address.
It can be found in the main configuration, Manage Jenkins -> Configure Jenkins -> System Admin e-mail address
.
Our values is ROS Buildfarm <[email protected]>
.
This will be the return address for the automated emails.
Instead of setting up an MTA you can also use an external SMTP server.
To use this in Manage Jenkins -> Configure Jenkins
you will find Extended E-mail Notification
and E-mail Notification
, both of which you should fill out with your SMTP server's credentials.