CSI driver for Ceph
Go to file
Yug Gupta 45cd8c311a ci: Add a stage to run containerized-test
Running containerized test prior to the build
stage to ensure that build starts only after
tests pass.

Signed-off-by: Yug Gupta <ygupta@redhat.com>
2020-05-15 17:01:26 +02:00
deploy add scripts and configuration to deploy with Jenkins Job Builder 2020-04-01 14:15:04 +02:00
containerized-tests.groovy ci: Add a stage to run containerized-test 2020-05-15 17:01:26 +02:00
jjb-deploy.yaml add jjb-<cmd> jobs for validating/deploying Jenkins jobs 2020-04-01 14:15:04 +02:00
jjb-validate.yaml add jjb-<cmd> jobs for validating/deploying Jenkins jobs 2020-04-01 14:15:04 +02:00
make-containerized-build.groovy ci: check for ghprbPullId env variable 2020-05-11 16:06:25 +02:00
make-containerized-build.yaml ci: check for new PRs every 5 minutes 2020-05-11 17:03:19 +02:00
prepare.sh prepare: exit when passed incorrect parameters 2020-05-07 10:31:57 +02:00
README.md add make-containerized-build job 2020-04-01 14:15:04 +02:00

Continuous Integration Jobs for the CentOS CI

  • dedicated Jenkins instance for Ceph-CSI
  • Jenkins is hosted on OpenShift in the CentOS CI
  • scripts and Jenkins jobs are hosted in the Ceph-CSI repository (ci/centos branch)
  • a Jenkins Pipeline is used to reserve bare metal system(s), and run jobs on those systems

Repository/Branch Structure

This is the ci/centos branch, where all the scripts for the Jenkins jobs are maintained. The tests that are executed by the jobs are part of the normal projects branches.

As an example, the make-containerized-build Jenkins job consists out of the following files:

  • make-containerized-build.yaml is a Jenkins Job Builder configuration that describes the events when the job should get run and fetches the .groovy file from the git repository/branch

  • make-containerized-build.groovy is the Jenkins Pipeline that contains the stages for the Jenkins Job itself. In order to work with the bare-metal machines from the CentOS CI, it executes the following stages:

    1. dynamically allocate a Jenkins Slave (node('cico-workspace')) with tools and configuration to request a bare-metal machine
    2. checkout the centos/ci branch of the repository, which contains scripts for provisioning and preparing the environment for running tests
    3. reserve a bare-metal machine with cico (configured on the Jenkins Slave)
    4. provision the reserved bare-metal machine with additional tools and dependencies to run the test (see prepare.sh below)
    5. run the test
    6. as final step, return the bare-metal machine to the CentOS CI for other users (it will be re-installed with a minimal CentOS environment again)
  • prepare.sh installs dependencies for the test, and checks out the git repository and branch (or Pull Request) that contains the commits to be tested (and the test itself)

Deploying the Jenkins Jobs

The Jenkins Jobs are described in Jenkins Job Builder configuration files and Jenkins Pipelines. These need to be imported in the Jenkins instance before they can be run. Importing is done with the jenkins-jobs command, which runs in a jjb container. To build the container, and provide the configuration for Jenkins Job Builder, see the documentation in the deploy/ directory.