Jenkins Slave that enables building of Ruby source code and optimized for deployment to a Jenkins instance running in the OpenShift Container Platform.
- Ruby 2.5.0 runtime, including: ** Bundler ** RubyGems
- Nodejs 8
A template is available providing the necessary OpenShift components to build and make the slave image available to be referenced by Jenkins.
Execute the following command to instantiate the template:
oc process -f ../../.openshift/templates/jenkins-slave-generic-template.yml \
-p NAME=jenkins-slave-ruby \
-p SOURCE_CONTEXT_DIR=jenkins-slaves/jenkins-slave-ruby \
| oc create -f -
A new image build will be started automatically. For all params see the list in the ../../.openshift/templates/jenkins-slave-generic-template.yml
or run oc process --parameters -f ../../.openshift/templates/jenkins-slave-generic-template.yml
.
The template contains an ImageStream that has been configured with the appropriate labels that will be picked up by newly deployed Jenkins instances.
For existing Jenkins servers, the slave can be added by using the following steps.
- Login to Jenkins
- Click on Manage Jenkins and then Configure System
- Under the Cloud section, locate the Kubernetes Plugin. Click the Add Pod Template dropdown and select **
- Enter the following details
- Name: jenkins-slave-ruby
- Labels: jenkins-slave-ruby
- Docker image
- Using the
oc
command line, runoc get is jenkins-slave-ruby --template='{{ .status.dockerImageRepository }}'
. A value similar to docker-registry.default.svc:5000/jenkins/jenkins-slave-ruby should be used
- Using the
- Jenkins slave root directory:
/tmp
- Click Save to apply the changes
The following provides an example of how to make use of the image within a Jenkins pipeline script to execute a simple install of dependencies:
node('jenkins-slave-ruby') {
stage('Build Code') {
sh """
echo "source 'https://rubygems.org'
gem 'nokogiri'" > Gemfile
bundle install
gem env
"""
}
}