!! THIS REPOSITORY IS VERY MUCH A WORK IN PROGRESS !!
PLEASE USE AT YOUR OWN RISK AND PROVIDE FEEDBACK IF YOU CAN!
This repository contains documentation and modules in a variety of configuration management systems that demonstrates setting up a real-world external testing platform that links with the upstream OpenStack CI platform.
It installs Jenkins, Jenkins Job Builder (JJB), the Gerrit Jenkins plugin, Nodepool, HTTP Proxy settings, and a set of scripts that make running a variety of OpenStack integration tests easy.
Currently only Puppet modules are complete and tested.
The following are pre-requisite steps before you install anything:
-
Read the official documentation: http://ci.openstack.org/third_party.html
-
Get a Gerrit account for your testing system registered
-
Ensure base packages installed on your target hosts/VMs
-
Set up your data repository
Below are detailed instructions for each step.
You will need to register a Gerrit account with the upstream OpenStack CI platform. You can read the instructions for doing that
We will be installing a Jenkins master server and infrastructure on one host or virtual machine and one or more Jenkins slave servers on hosts or VMs.
On each of these target nodes, you will want the base image to have the
wget
, openssl
, ssl-cert
and ca-certificates
packages installed before
running anything in this repository.
You will want to create a Git repository containing configuration data files -- such as the Gerrit username and private SSH key file for your testing account -- that are used in setting up the test platform.
The easiest way to get your data repository set up is to make a copy of the example repository I set up here:
http://github.com/rasselin/os-ext-testing-data
and put it somewhere private. There are a few things you will need to do in this data repository:
-
Copy the private SSH key that you submitted when you registered with the upstream OpenStack Infrastructure team into somewhere in this repo.
-
If you do not want to use the SSH key pair in the
os-ext-testing-data
example data repository and want to create your own SSH key pair, do this step.Create an SSH key pair that you will use for Jenkins. This SSH key pair will live in the
/var/lib/jenkins/.ssh/
directory on the master Jenkins host, and it will be added to the/home/jenkins/.ssh/authorized_keys
file of all slave hosts::ssh-keygen -t rsa -b 1024 -N '' -f jenkins_key
Once you do the above, copy the
jenkins_key
andjenkins_key.pub
files into your data repository. -
Copy the vars.sh.sample to vars.sh and open up
vars.sh
in an editor. -
Change the value of the
$UPSTREAM_GERRIT_USER
shell variable to the Gerrit username you registered with the upstream OpenStack Infrastructure team as detailed in these instructions -
Change the value of the
$UPSTREAM_GERRIT_SSH_KEY_PATH
shell variable to the relative path of the private SSH key file you copied into the repository in step #2.For example, let's say you put your private SSH key file named
mygerritkey
into a directory calledssh
within the repository, you would set the$UPSTREAM_GERRIT_SSH_KEY_PATH
value tossh/mygerritkey
-
If for some reason, in step #2 above, you either used a different output filename than
jenkins_key
or put the key pair into some subdirectory of your data repository, then change the value of the$JENKINS_SSH_KEY_PATH
variable invars.sh
to an appropriate value. -
Copy etc/nodepool/nodepool.yaml.erb.sample to etc/nodepool/nodepool.yaml.erb. Adjust as needed according to docs: http://ci.openstack.org/nodepool/configuration.html.
-
Update etc/zuul/layout.yaml according to docs: http://ci.openstack.org/zuul/zuul.html#layout-yaml
On the machine you will use as your Jenkins master, run the following:
wget https://raw.github.com/rasselin/os-ext-testing/master/puppet/install_master.sh
bash install_master.sh
The script will install Puppet, create an SSH key for the Jenkins master, create self-signed certificates for Apache, and then will ask you for the URL of the Git repository you are using as your data repository (see Prerequisites #3 above). Enter the URL of your data repository and hit Enter.
Puppet will proceed to set up the Jenkins master.
Version 1.8 is publicly available, but does not have all features (e.g. copy console log file, copy files after failure, etc.). Follow these steps to manually build and install the scp 1.9 plugin:
- Download http://tarballs.openstack.org/ci/scp.jpi
- Jenkins Manage Plugins; Advanced; Upload Plugin (scp.jpi)
Source: http://lists.openstack.org/pipermail/openstack-infra/2013-December/000568.html
sudo service jenkins restart
Run the following at the command line:
sudo jenkins-jobs --flush-cache update /etc/jenkins_jobs/config
Start zuul
sudo service zuul start
sudo service zuul-merger start
After Puppet installs Jenkins and Zuul and Nodepool, you will need to do a couple manual configuration steps in the Jenkins UI.
-
Go to the Jenkins web UI. By default, this will be
http://$IP_OF_MASTER:8080
-
Click the
Manage Jenkins
link on the left -
Click the
Configure System
link -
Scroll down until you see "Gearman Plugin Config". Check the "Enable Gearman" checkbox.
-
Click the "Test Connection" button and verify Jenkins connects to Gearman.
-
Scroll to "ZMQ Event Publisher" and select "Enable on all Jobs". Double-check the port matches the URL configured for "zmq-publishers" in
$DATA_REPO/etc/nodepool/nodepool.yaml.erb
-
Scroll down to the bottom of the page and click
Save
-
At the command line, do this::
sudo service zuul restart
-
Re-run the install_master.sh script for your changes to take effect.
-
TODO(Ramy) Make sure the jenkins key is setup in the 'cloud' provider with name "jenkins". Also, make it configurable.
-
Start nodepool:
sudo su - nodepool source /etc/default/nodepool nodepoold -d $DAEMON_ARGS
TODO(Ramy) why does sudo service nodepool not work?
On each machine you will use as a Jenkins slave, run:
wget https://raw.github.com/jaypipes/os-ext-testing/master/puppet/install_slave.sh
bash install_slave.sh
The script will install Puppet, install a Jenkins slave, and install the Jenkins master's
public SSH key in the authorized_keys
of the Jenkins slave.
Once the script completes successfully, you need to add the slave node to Jenkins master. To do so manually, follow these steps:
-
Go to the Jenkins web UI. By default, this will be
http://$IP_OF_MASTER:8080
-
Click the
Credentials
link on the left -
Click the
Global credentials
link -
Click the
Add credentials
link on the left -
Select
SSH username with private key
from the dropdown labeled "Kind" -
Enter "jenkins" in the
Username
textbox -
Select the "From a file on Jenkins master" radio button and enter
/var/lib/jenkins/.ssh/id_rsa
in the File textbox -
Click the
OK
button -
Click the "Jenkins" link in the upper left to go back to home page
-
Click the
Manage Jenkins
link on the left -
Click the
Manage Nodes
link -
Click the "New Node" link on the left
-
Enter
devstack_slave1
in theNode name
textbox -
Select the
Dumb Slave
radio button -
Click the
OK
button -
Enter
2
in theExecutors
textbox -
Enter
/home/jenkins/workspaces
in theRemote root directory
textbox -
Enter
devstack_slave
in theLabels
textbox -
Enter the IP Address of your slave host or VM in the
Host
textbox -
Select
jenkins
from theCredentials
dropdown -
Click the
Save
button -
Click the
Log
link on the left. The log should show the master connecting to the slave, and at the end of the log should be: "Slave successfully connected and online"
The Log server is a simple VM with an Apache web server installed that provides http access to all the log files uploaded by the jenkins jobs. It is a separate script because the jenkins-zuul-nodepool 'master' server may/can not be publicly accessible for security reasons. In addition, separating out the log server as its own server relaxes the disk space requirements needed by the jenkins master.
It's configuration uses the openstack-infra scripts, which provide the friendly log filtering features, hightlighting, the line references, etc.
Upstream doesn't currently support Ubuntu 14.04/Apache 2.4. Workaround is to cherry pick this patch or apply it manually to /etc/apache2/sites-enabled/*.conf: https://review.openstack.org/#/c/164889/
For simplicity, it is recommended to use the same jenkins key for authentication.
wget https://raw.githubusercontent.com/rasselin/os-ext-testing/master/puppet/install_log_server.sh
#MANUALLY Update the LOG_SERVER_DOMAIN & JENKINS_SSH_PUBLIC_KEY_CONTENTS variables
bash install_log_server.sh
Bug:
err: /Stage[main]/Logging::Master/Exec[install_os-loganalyze]: Failed to call refresh: python setup.py install returned 1 instead of one of [0] at /home/stack/os-ext-testing/puppet/modules/logging/manifests/master.pp:89
Workaround:
cd /opt/os-loganalyze
sudo python setup.py install
When completed, the jenkins user will be able to upload files to /srv/static/logs, which Apache will serve via http.