Jenkins is the leading open source automation server, Jenkins provides hundreds of plugins to support building, deploying and automating any project.
This chart installs a Jenkins server which spawns agents on Kubernetes utilizing the Jenkins Kubernetes plugin.
Inspired by the awesome work of Carlos Sanchez.
helm repo add jenkins https://charts.jenkins.io
helm repo update
See helm repo for command documentation.
# Helm 3
$ helm install [RELEASE_NAME] jenkins/jenkins [flags]
See configuration below.
See helm install for command documentation.
# Helm 3
$ helm uninstall [RELEASE_NAME]
This removes all the Kubernetes components associated with the chart and deletes the release.
See helm uninstall for command documentation.
# Helm 3
$ helm upgrade [RELEASE_NAME] jenkins/jenkins [flags]
See helm upgrade for command documentation.
Visit the chart's CHANGELOG to view the chart's release history. For migration between major version check migration guide.
See Customizing the Chart Before Installing. To see all configurable options with detailed comments, visit the chart's values.yaml, or run these configuration commands:
# Helm 3
$ helm show values jenkins/jenkins
For a summary of all configurable options, see VALUES_SUMMARY.md
This chart configured a securityRealm
and authorizationStrategy
as shown below:
controller:
JCasC:
securityRealm: |-
local:
allowsSignup: false
enableCaptcha: false
users:
- id: "${chart-admin-username}"
name: "Jenkins Admin"
password: "${chart-admin-password}"
authorizationStrategy: |-
loggedInUsersCanDoAnything:
allowAnonymousRead: false
With the configuration above there is only a single user. This is ok for getting started quickly, but it needs to be adjusted for any serious environment.
So you should adjust this to suite your needs. That could be using LDAP / OIDC / .. as authorization strategy and use globalMatrix as authorization strategy to configure more fine-grained permissions.
This chart allows the user to specify plugins which should be installed. However, for production use cases one should consider to build a custom Jenkins image which has all required plugins pre-installed. This way you can be sure which plugins Jenkins is using when starting up and you avoid trouble in case of connectivity issues to the Jenkins update site.
The docker repository for the Jenkins image contains documentation how to do it.
Here is an example how that can be done:
FROM jenkins/jenkins:lts
RUN jenkins-plugin-cli --plugins kubernetes workflow-aggregator git configuration-as-code
NOTE: If you want a reproducible build then you should specify a non-floating tag for the image jenkins/jenkins:2.249.3
and specify plugin versions.
Once you built the image and pushed it to your registry you can specify it in your values file like this:
controller:
image: "registry/my-jenkins"
tag: "v1.2.3"
installPlugins: false
Notice: installPlugins
is set to false to disable plugin download. In this case, the image registry/my-jenkins:v1.2.3
must have the plugins specified as default value for the controller.installPlugins
directive to ensure that the configuration side-car system works as expected.
In case you are using a private registry you can use 'imagePullSecretName' to specify the name of the secret to use when pulling the image:
controller:
image: "registry/my-jenkins"
tag: "v1.2.3"
imagePullSecretName: registry-secret
installPlugins: false
If you are using the ingress definitions provided by this chart via the controller.ingress
block the configured hostname will be the ingress hostname starting with https://
or http://
depending on the tls
configuration.
The Protocol can be overwritten by specifying controller.jenkinsUrlProtocol
.
If you are not using the provided ingress you can specify controller.jenkinsUrl
to change the url definition.
Jenkins Configuration as Code (JCasC) is now a standard component in the Jenkins project.
To allow JCasC's configuration from the helm values, the plugin configuration-as-code
must be installed in the Jenkins Controller's Docker image (which is the case by default as specified by the default value of the directive controller.installPlugins
).
JCasc configuration is passed through Helm values under the key controller.JCasC
.
The section "Jenkins Configuration as Code (JCasC)" of the page "VALUES_SUMMARY.md" lists all the possible directives.
In particular, you may specify custom JCasC scripts by adding sub-key under the controller.JCasC.configScripts
for each configuration area where each corresponds to a plugin or section of the UI.
The sub-keys (prior to |
character) are only labels used to give the section a meaningful name.
The only restriction is they must conform to RFC 1123 definition of a DNS label, so they may only contain lowercase letters, numbers, and hyphens.
Each key will become the name of a configuration yaml file on the controller in /var/jenkins_home/casc_configs
(by default) and will be processed by the Configuration as Code Plugin during Jenkins startup.
The lines after each |
become the content of the configuration yaml file.
The first line after this is a JCasC root element, e.g. jenkins, credentials, etc.
Best reference is the Documentation link here: https://<jenkins_url>/configuration-as-code
.
The example below sets custom systemMessage:
controller:
JCasC:
configScripts:
welcome-message: |
jenkins:
systemMessage: Welcome to our CI\CD server.
More complex example that creates ldap settings:
controller:
JCasC:
configScripts:
ldap-settings: |
jenkins:
securityRealm:
ldap:
configurations:
- server: ldap.acme.com
rootDN: dc=acme,dc=uk
managerPasswordSecret: ${LDAP_PASSWORD}
groupMembershipStrategy:
fromUserRecord:
attributeName: "memberOf"
Keep in mind that default configuration file already contains some values that you won't be able to override under configScripts section.
For example, you can not configure Jenkins URL and System Admin e-mail address like this because of conflicting configuration error.
Incorrect:
controller:
JCasC:
configScripts:
jenkins-url: |
unclassified:
location:
url: https://example.com/jenkins
adminAddress: [email protected]
Correct:
controller:
jenkinsUrl: https://example.com/jenkins
jenkinsAdminEmail: [email protected]
Further JCasC examples can be found here.
Jenkins Config as Code scripts can become quite large, and maintaining all of your scripts within one yaml file can be difficult. The Config as Code plugin itself suggests updating the CASC_JENKINS_CONFIG
environment variable to be a comma seperated list of paths for the plugin to traverse, picking up the yaml files as needed.
However, under the Jenkins helm chart, this CASC_JENKINS_CONFIG
value is maintained through the templates. A better solution is to split your controller.JCasC.configScripts
into seperate values files, and provide each file during the helm install.
For example, you can have a values file (e.g values_main.yaml) that defines the values described in the VALUES_SUMMARY.md
for your Jenkins configuration:
jenkins:
controller:
jenkinsUrlProtocol: https
installPlugins: false
...
In a second file (e.g values_jenkins_casc.yaml), you can define a section of your config scripts:
jenkins:
controller:
JCasC:
configScripts:
jenkinsCasc: |
jenkins:
disableRememberMe: false
mode: NORMAL
...
And keep extending your config scripts by creating more files (so not all config scripts are located in one yaml file for better maintenance):
values_jenkins_unclassified.yaml
jenkins:
controller:
JCasC:
configScripts:
unclassifiedCasc: |
unclassified:
...
When installing, you provide all relevant yaml files (e.g helm install -f values_main.yaml -f values_jenkins_casc.yaml -f values_jenkins_unclassified.yaml ...
). Instead of updating the CASC_JENKINS_CONFIG
environment variable to include multiple paths, multiple CasC yaml files will be created in the same path var/jenkins_home/casc_configs
.
Config as Code changes (to controller.JCasC.configScripts
) can either force a new pod to be created and only be applied at next startup, or can be auto-reloaded on-the-fly.
If you set controller.sidecars.configAutoReload.enabled
to true
, a second, auxiliary container will be installed into the Jenkins controller pod, known as a "sidecar".
This watches for changes to configScripts, copies the content onto the Jenkins file-system and issues a POST to http://<jenkins_url>/reload-configuration-as-code
with a pre-shared key.
You can monitor this sidecar's logs using command kubectl logs <controller_pod> -c config-reload -f
.
If you want to enable auto-reload then you also need to configure rbac as the container which triggers the reload needs to watch the config maps:
controller:
sidecars:
configAutoReload:
enabled: true
rbac:
create: true
Some third-party systems (e.g. GitHub) use HTML-formatted data in their payload sent to a Jenkins webhook (e.g. URL of a pull-request being built).
To display such data as processed HTML instead of raw text set controller.enableRawHtmlMarkupFormatter
to true.
This option requires installation of the OWASP Markup Formatter Plugin (antisamy-markup-formatter).
This plugin is not installed by default but may be added to controller.additionalPlugins
.
When using agents with containers other than JNLP, The kubernetes plugin will communicate with those containers using the Kubernetes API. this changes the maximum concurrent connections
agent:
maxRequestsPerHostStr: "32"
This will change the configuration of the kubernetes "cloud" (as called by jenkins) that is created automatically as part of this helm chart.
Your Jenkins Agents will run as pods, and it's possible to inject volumes where needed:
agent:
volumes:
- type: Secret
secretName: jenkins-mysecrets
mountPath: /var/run/secrets/jenkins-mysecrets
The supported volume types are: ConfigMap
, EmptyDir
, HostPath
, Nfs
, PVC
, Secret
.
Each type supports a different set of configurable attributes, defined by the corresponding Java class.
To make use of the NetworkPolicy resources created by default, install a networking plugin that implements the Kubernetes NetworkPolicy spec.
Install helm chart with network policy enabled by setting networkPolicy.enabled
to true
.
You can use controller.networkPolicy.internalAgents
and controller.networkPolicy.externalAgents
stanzas for fine-grained controls over where internal/external agents can connect from.
Internal ones are allowed based on pod labels and (optionally) namespaces, and external ones are allowed based on IP ranges.
controller.scriptApproval
allows to pass function signatures that will be allowed in pipelines.
Example:
controller:
scriptApproval:
- "method java.util.Base64$Decoder decode java.lang.String"
- "new java.lang.String byte[]"
- "staticMethod java.util.Base64 getDecoder"
controller.serviceLabels
can be used to add custom labels in jenkins-controller-svc.yaml
.
For example:
ServiceLabels:
expose: true
The Jenkins image stores persistence under /var/jenkins_home
path of the container.
A dynamically managed Persistent Volume Claim is used to keep the data across deployments, by default.
This is known to work in GCE, AWS, and minikube. Alternatively, a previously configured Persistent Volume Claim can be used.
It is possible to mount several volumes using persistence.volumes
and persistence.mounts
parameters.
See additional persistence
values using configuration commands.
- Create the PersistentVolume
- Create the PersistentVolumeClaim
- Install the chart, setting
persistence.existingClaim
toPVC_NAME
Certain volume type and filesystem format combinations may experience long
attach/mount times, 10 or more minutes, when using
fsGroup
. This issue may result in the following entries in the pod's event
history:
Warning FailedMount 38m kubelet, aks-default-41587790-2 Unable to attach or mount volumes: unmounted volumes=[jenkins-home], unattached volumes=[plugins plugin-dir jenkins-token-rmq2g sc-config-volume tmp jenkins-home jenkins-config secrets-dir]: timed out waiting for the condition
In these cases, experiment with replacing fsGroup
with
supplementalGroups
in the pod's securityContext
. This can be achieved by
setting the controller.podSecurityContextOverride
Helm chart value to
something like:
controller:
podSecurityContextOverride:
runAsNonRoot: true
runAsUser: 1000
supplementalGroups: [1000]
This issue has been reported on azureDisk with ext4 and on Alibaba cloud.
It is possible to define which storage class to use, by setting persistence.storageClass
to [customStorageClass]
.
If set to a dash (-
), dynamic provisioning is disabled.
If the storage class is set to null or left undefined (""
), the default provisioner is used (gp2 on AWS, standard on GKE, AWS & OpenStack).
Additional secrets and Additional Existing Secrets,
can be mounted into the Jenkins controller through the chart or created using controller.additionalSecrets
or controller.additionalExistingSecrets
.
A common use case might be identity provider credentials if using an external LDAP or OIDC-based identity provider.
The secret may then be referenced in JCasC configuration (see JCasC configuration).
values.yaml
controller section, referencing mounted secrets:
controller:
# the 'name' and 'keyName' are concatenated with a '-' in between, so for example:
# an existing secret "secret-credentials" and a key inside it named "github-password" should be used in Jcasc as ${secret-credentials-github-password}
# 'name' and 'keyName' must be lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-',
# and must start and end with an alphanumeric character (e.g. 'my-name', or '123-abc')
# existingSecret existing secret "secret-credentials" and a key inside it named "github-username" should be used in Jcasc as ${github-username}
# When using existingSecret no need to specify the keyName under additionalExistingSecrets.
existingSecret: secret-credentials
additionalExistingSecrets:
- name: secret-credentials
keyName: github-username
- name: secret-credentials
keyName: github-password
- name: secret-credentials
keyName: token
additionalSecrets:
- name: client_id
value: abc123
- name: client_secret
value: xyz999
JCasC:
securityRealm: |
oic:
clientId: ${client_id}
clientSecret: ${client_secret}
...
configScripts:
jenkins-casc-configs: |
credentials:
system:
domainCredentials:
- credentials:
- string:
description: "github access token"
id: "github_app_token"
scope: GLOBAL
secret: ${secret-credentials-token}
- usernamePassword:
description: "github access username password"
id: "github_username_pass"
password: ${secret-credentials-github-password}
scope: GLOBAL
username: ${secret-credentials-github-username}
For more information, see JCasC documentation.
It's possible for this chart to generate SecretClaim
resources in order to automatically create and maintain Kubernetes Secrets
from HashiCorp Vault via kube-vault-controller
These Secrets
can then be referenced in the same manner as Additional Secrets above.
This can be achieved by defining required Secret Claims within controller.secretClaims
, as follows:
controller:
secretClaims:
- name: jenkins-secret
path: secret/path
- name: jenkins-short-ttl
path: secret/short-ttl-path
renew: 60
RBAC is enabled by default. If you want to disable it you will need to set rbac.create
to false
.
Adds a backup CronJob for jenkins, along with required RBAC resources. See additional backup
values using configuration commands.
Let's look at a quick example. Let's pretend we are backing up Jenkins to a Google Cloud Storage (GCS) Bucket. Here is what the process would look like:
If you don't have a GCP account, you can create a Free Account with the link below:
You need to create a GCS bucket with a unique name, which you can do by following the guide below:
In order for the backup job to upload Jenkins data to the GCS bucket, you need to provide it with a Google Service Account, which you can create by following the guide below:
Now you need to provide your GCP Service Account with the roles/storage.admin
role, which has permissions to read/write content to a GCS bucket. You can do this by following the guide below:
Now that you have a Service Account (SA), you need to create a Service Account Key, which is a file that represents the GCP Service Account that will get passed to the Backup Job (and later on to the Recovery Job). You can create it by following the guide below:
In order for the Backup Job to access the GCP Service Account Key you need to create Kubernetes Secret, which you can create using the command below:
# Replace with the path to the SA Key
kubectl -n jenkins create secret generic jenkinsgcp --from-file=sa-credentials.json=/path/to/sa_key.json
NOTE: This assumes that you will deploy the Jenkins chart in the jenkins
namespace.
Rather than using a long command to pass on all the new Chart values, create a values file called values.yaml
, then put the following content on it, then save it:
backup:
enabled: true
schedule: "0 2 * * *" # Runs every day at 2 am, change it to whatever interval works for you
existingSecret:
jenkinsgcp: # This is the secret name
gcpcredentials: sa-credentials.json # The service account file in the secret
destination: "gcs://BUCKET_NAME/jenkins-k8s-backup" # Replace with Bucket Name from previous step
controller:
initializeOnce: true # Installs latest plugins as soon as Jenkins starts
installLatestPlugins: true
persistence:
enabled: true # So that we have a PVC that we can backup
NOTE: The gcpcredentials
key in the jenkinsgcp
field tells the Helm chart that we will be using a GCS bucket as our backup.
Now that we have everything in place, let's deploy the Jenkins Chart with the new values file:
helm upgrade --install jenkins --namespace jenkins \
-f values.yaml \
jenkinsci/jenkins;
NOTE: Save the password from this installation as it will be needed in the Restore from Backup in Google Cloud Storage Bucket section.
Once Jenkins is available, go to Jenkins and create jobs, download plugins, and create credentials so that we have something to backup other than the default Jenkins installation.
The values file we used to deploy Jenkins runs the backup job every day at 2 AM.
If you don't want to wait that long for the job to start running, then patch the CronJob to run in the next minute with the following commands:
# Update CronJob to run every minute
kubectl -n jenkins patch cronjob.batch/jenkins-backup --patch '{"spec": {"schedule": "* * * * *"}}'
# Run this command until the "jenkins-backup-*" container is running
kubectl get pods | grep backup;
# To prevent multiple jobs from spanning every minute, change the CronJob back to original schedule
kubectl -n jenkins patch cronjob.batch/jenkins-backup --patch '{"spec": {"schedule": "0 2 * * *"}}'
Once the job is running, then query the backup pod logs to monitor progress as follows:
# Get backup container name
BACKUP_CONTAINER=$(kubectl get pods | grep backup | awk '{print $1}');
# Stream logs of backup container until job is finished
kubectl logs -f ${BACKUP_CONTAINER};
NOTE: The backup job will create a time-stamped folder in the GCS bucket each time the backup job runs.
If you can see a success message from the backup job and can see the contents of the backup on your GCS bucket, then the backup was successful!
A similar process would work for AWS S3. See additional backup
values using configuration commands.
NOTE: If an environmental variable AWS_REGION
is not provided, the region of the AWS S3 bucket will be assumed to be eu-central-1
. If you want to use an S3 bucket in another region, you need to provide the bucket's region as an environmental variable as below:
backup:
env: # The region of your S3 bucket.
- name: AWS_REGION
value: us-east-1
To restore a backup, you can use the kube-tasks
underlying tool called skbn, which copies files from cloud storage to Kubernetes.
The best way to do it would be using a Job
to copy files from the desired backup tag to the Jenkins pod.
See the following example for more details.
NOTE: This section assumes that you ran the steps in Example: Backup to Google Cloud Storage Bucket beforehand and that you saved the password for that Jenkins installation, which you will need at the end of this section.
Let's pretend you are restoring a backup from a Google Cloud Storage Bucket because you completely lost your Jenkins installation and you are starting from scratch.
In the following steps, we will explain what this process would look like:
First, we need to remove the old Jenkins installation that we backed up previously, then we can install a clean Jenkins instance to restore from GCS backup.
To do so, run the following commands:
# Delete old Jenkins installation
helm delete jenkins
# Install Jenkins Chart
helm upgrade --install jenkins --namespace jenkins \
-f values.yaml \
jenkinsci/jenkins;
NOTE: This Command uses the same values file that was created in the 7. Deploy the Jenkins Helm Chart using a modified values file section.
Now verify that Jenkins is up and running and it DOES NOT have any of the resources you created earlier.
In order for the Restore job to pull backup data from the GCS bucket and put it in the jenkins /var/jenkins_home
folder in the Jenkins pod, you need to create the following:
- A Kubernetes Service Account (not to be confused with a GCP Service Account) for the Restore job.
- A Kubernetes ClusterRole that lists the necessary permissions to update the data in the volumes of other pods.
- A Kubernetes ClusterRoleBinding that binds the above ClusterRole to the Service Account.
To do so, create a file called restore-rbac.yaml
and enter the following content, then save it:
apiVersion: v1
kind: ServiceAccount
metadata:
labels:
app: skbn
name: skbn
namespace: jenkins
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
labels:
app: skbn
name: skbn
rules:
- apiGroups: [""]
resources: ["pods", "pods/log"]
verbs: ["get", "list"]
- apiGroups: [""]
resources: ["pods/exec"]
verbs: ["create"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
labels:
app: skbn
name: skbn
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: skbn
subjects:
- kind: ServiceAccount
name: skbn
namespace: jenkins
To apply the above manifest, run the following command:
kubectl apply -f restore-rbac.yaml
The logic that will execute the Jenkins restoration from a GCS backup will be done through a Kubernetes Job, which will run only once as needed.
To create the job, create a manifest file called restore.yaml
with the following content, then save it:
apiVersion: batch/v1
kind: Job
metadata:
labels:
app: skbn
name: skbn
namespace: jenkins
spec:
template:
metadata:
labels:
app: skbn
spec:
restartPolicy: OnFailure
serviceAccountName: skbn
containers:
- name: skbn
image: maorfr/skbn
command: ["skbn"]
args:
- "cp"
- "--src"
- "gcs://BUCKET_NAME/jenkins-k8s-backup/BACKUP_NAME"
- "--dst"
- "k8s://jenkins/jenkins-0/jenkins/var/jenkins_home"
imagePullPolicy: IfNotPresent
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /var/run/secrets/jenkinsgcp/sa-credentials.json
volumeMounts:
- mountPath: /var/run/secrets/jenkinsgcp
name: jenkinsgcp
volumes:
- name: jenkinsgcp
secret:
secretName: jenkinsgcp
While the above Job manifest is mostly complete, you need to replace a couple of things, as follows:
- Replace
BUCKET_NAME
with the GCS Bucket name created in Create a GCS bucket with a unique name. - Go to your GCS bucket and find the name of the latest timestamped folder (i.e.
20210717154947
), then replaceBACKUP_NAME
with it, then save the file.
Notice that we are using the jenkinsgcp
Kubernetes Secret that holds the sa-credentials.json
key file for the GCP Service Account that we created in Create a Service Account Key.
Having the Kubernetes Secret provide the GCP Service Account Key to the Restore Kubernetes Job is what will allow the Job to download the contents of the backup from the GCS bucket and put it into the /var/jenkins_home
folder in the Persistent Volume Claim of the jenkins-0
pod.
Deploy the Restore Job using the following command:
kubectl apply -f restore.yaml
Wait about a minute for the Job to start, then query the logs using the following commands:
# Get restore container name
RESTORE_CONTAINER=$(kubectl get pods | grep skbn | awk '{print $1}');
# Stream logs of restore container until job is finished
kubectl logs -f ${RESTORE_CONTAINER};
Watch the logs until the job is done. This usually takes a few minutes.
Login to Jenkins, then click on Manage Jenkins-> Reload Configuration from Disk
, then press OK
.
Jenkins is now going to reload the backup content from disk and restart. Now, if you performed this on a new Jenkins installation, you will not be able to login using the password for the new installation of Jenkins.
Because we are restoring from the backup of a previous installation, we need to login using the password for the old Jenkins installation.
So, refresh your browser and login to Jenkins using the password from the backup.
Now, verify that all your jobs, plugins, and credentials from that backup are showing up, and if they are, then CONGRATULATIONS on successfully restoring Jenkins from a GCS Backup!
A similar process would work for AWS S3. See additional backup
values using configuration commands to figure out how what fields to put in the Restore Job manifest.
It is possible to add custom pod templates for the default configured kubernetes cloud.
Add a key under agent.podTemplates
for each pod template. Each key (prior to |
character) is just a label, and can be any value.
Keys are only used to give the pod template a meaningful name. The only restriction is they may only contain RFC 1123 \ DNS label characters: lowercase letters, numbers, and hyphens. Each pod template can contain multiple containers.
There's no need to add the jnlp container since the kubernetes plugin will automatically inject it into the pod.
For this pod templates configuration to be loaded the following values must be set:
controller.JCasC.defaultConfig: true
The example below creates a python pod template in the kubernetes cloud:
agent:
podTemplates:
python: |
- name: python
label: jenkins-python
serviceAccount: jenkins
containers:
- name: python
image: python:3
command: "/bin/sh -c"
args: "cat"
ttyEnabled: true
privileged: true
resourceRequestCpu: "400m"
resourceRequestMemory: "512Mi"
resourceLimitCpu: "1"
resourceLimitMemory: "1024Mi"
Best reference is https://<jenkins_url>/configuration-as-code/reference#Cloud-kubernetes
.
additionalAgents
may be used to configure additional kubernetes pod templates.
Each additional agent corresponds to agent
in terms of the configurable values and inherits all values from agent
so you only need to specify values which differ.
For example:
agent:
podName: default
customJenkinsLabels: default
# set resources for additional agents to inherit
resources:
limits:
cpu: "1"
memory: "2048Mi"
additionalAgents:
maven:
podName: maven
customJenkinsLabels: maven
# An example of overriding the jnlp container
# sideContainerName: jnlp
image: jenkins/jnlp-agent-maven
tag: latest
python:
podName: python
customJenkinsLabels: python
sideContainerName: python
image: python
tag: "3"
command: "/bin/sh -c"
args: "cat"
TTYEnabled: true
This chart provides ingress resources configurable via the controller.ingress
block.
The simplest configuration looks like the following:
controller:
ingress:
enabled: true
paths: []
apiVersion: "extensions/v1beta1"
hostName: jenkins.example.com
This snippet configures an ingress rule for exposing jenkins at jenkins.example.com
You can define labels and annotations via controller.ingress.labels
and controller.ingress.annotations
respectively.
Additionally, you can configure the ingress tls via controller.ingress.tls
.
By default, this ingress rule exposes all paths.
If needed this can be overwritten by specifying the wanted paths in controller.ingress.paths
If you want to configure a secondary ingress e.g. you don't want the jenkins instance exposed but still want to receive webhooks you can configure controller.secondaryingress
.
The secondaryingress doesn't expose anything by default and has to be configured via controller.secondaryingress.paths
:
controller:
ingress:
enabled: true
apiVersion: "extensions/v1beta1"
hostName: "jenkins.internal.example.com"
annotations:
kubernetes.io/ingress.class: "internal"
secondaryingress:
enabled: true
apiVersion: "extensions/v1beta1"
hostName: "jenkins-scm.example.com"
annotations:
kubernetes.io/ingress.class: "public"
paths:
- /github-webhook
If you want to expose Prometheus metrics you need to install the Jenkins Prometheus Metrics Plugin.
It will expose an endpoint (default /prometheus
) with metrics where a Prometheus Server can scrape.
If you have implemented Prometheus Operator, you can set master.prometheus.enabled
to true
to configure a ServiceMonitor
and PrometheusRule
.
If you want to further adjust alerting rules you can do so by configuring master.prometheus.alertingrules
If you have implemented Prometheus without using the operator, you can leave master.prometheus.enabled
set to false
.
The controller pod uses an Init Container to install plugins etc. If you are behind a corporate proxy it may be useful to set controller.initContainerEnv
to add environment variables such as http_proxy
, so that these can be downloaded.
Additionally, you may want to add env vars for the init container, the Jenkins container, and the JVM (controller.javaOpts
):
controller:
initContainerEnv:
- name: http_proxy
value: "http://192.168.64.1:3128"
- name: https_proxy
value: "http://192.168.64.1:3128"
- name: no_proxy
value: ""
- name: JAVA_OPTS
value: "-Dhttps.proxyHost=proxy_host_name_without_protocol -Dhttps.proxyPort=3128"
containerEnv:
- name: http_proxy
value: "http://192.168.64.1:3128"
- name: https_proxy
value: "http://192.168.64.1:3128"
javaOpts: >-
-Dhttp.proxyHost=192.168.64.1
-Dhttp.proxyPort=3128
-Dhttps.proxyHost=192.168.64.1
-Dhttps.proxyPort=3128
This configuration enables jenkins to use keystore in order to serve https.
Here is the value file section related to keystore configuration.
Keystore itself should be placed in front of jenkinsKeyStoreBase64Encoded
key and in base64 encoded format. To achieve that after having keystore.jks
file simply do this: cat keystore.jks | base64
and paste the output in front of jenkinsKeyStoreBase64Encoded
.
After enabling httpsKeyStore.enable
make sure that httpPort
and targetPort
are not the same, as targetPort
will serve https.
Do not set controller.httpsKeyStore.httpPort
to -1
because it will cause readiness and liveliness prob to fail.
If you already have a kubernetes secret that has keystore and its password you can specify its' name in front of jenkinsHttpsJksSecretName
, You need to remember that your secret should have proper data key names jenkins-jks-file
and https-jks-password
. Example:
controller:
httpsKeyStore:
enable: true
jenkinsHttpsJksSecretName: ''
httpPort: 8081
path: "/var/jenkins_keystore"
fileName: "keystore.jks"
password: "changeit"
jenkinsKeyStoreBase64Encoded: ''
To create SecurityGroupPolicies set awsSecurityGroupPolicies.enabled
to true and add your policies. Each policy requires a name
, array of securityGroupIds
and a podSelector
. Example:
awsSecurityGroupPolicies:
enabled: true
policies:
- name: "jenkins-controller"
securityGroupIds:
- sg-123456789
podSelector:
matchExpressions:
- key: app.kubernetes.io/component
operator: In
values:
- jenkins-controller
Upgrade an existing release from stable/jenkins
to jenkins/jenkins
seamlessly by ensuring you have the latest repo info and running the upgrade commands specifying the jenkins/jenkins
chart.
Chart release versions follow semver, where a MAJOR version change (example 1.0.0
-> 2.0.0
) indicates an incompatible breaking change needing manual actions.
-
Check
securityRealm
andauthorizationStrategy
and adjust it. Otherwise, your configured users and permissions will be overridden. -
You need to use helm version 3 as the
Chart.yaml
usesapiVersion: v2
. -
All XML configuration options have been removed. In case those are still in use you need to migrate to configuration as code. Upgrade guide to 2.0.0 contains pointers how to do that.
-
Jenkins is now using a
StatefulSet
instead of aDeployment
-
terminology has been adjusted that's also reflected in values.yaml The following values from
values.yaml
have been renamed:master
=>controller
master.useSecurity
=>controller.adminSecret
master.slaveListenerPort
=>controller.agentListenerPort
master.slaveHostPort
=>controller.agentListenerHostPort
master.slaveKubernetesNamespace
=>agent.namespace
master.slaveDefaultsProviderTemplate
=>agent.defaultsProviderTemplate
master.slaveJenkinsUrl
=>agent.jenkinsUrl
master.slaveJenkinsTunnel
=>agent.jenkinsTunnel
master.slaveConnectTimeout
=>agent.kubernetesConnectTimeout
master.slaveReadTimeout
=>agent.kubernetesReadTimeout
master.slaveListenerServiceAnnotations
=>controller.agentListenerServiceAnnotations
master.slaveListenerServiceType
=>controller.agentListenerServiceType
master.slaveListenerLoadBalancerIP
=>controller.agentListenerLoadBalancerIP
agent.slaveConnectTimeout
=>agent.connectTimeout
-
Removed values:
master.imageTag
: usecontroller.image
andcontroller.tag
insteadslave.imageTag
: useagent.image
andagent.tag
instead
Configuration as Code is now default + container does not run as root anymore.
Configuration is done via Jenkins Configuration as Code Plugin by default. That means that changes in values which result in a configuration change are always applied. In contrast, the XML configuration was only applied during the first start and never altered.
❗❗❗
Attention:
This also means if you manually altered configuration then this will most likely be reset to what was configured by default.
It also applies to securityRealm
and authorizationStrategy
as they are also configured using configuration as code.
:exclamation::exclamation::exclamation:
It's not recommended to run containers in Kubernetes as root
.
❗ Attention: If you had not configured a different user before then you need to ensure that your image supports the user and group id configured and also manually change permissions of all files so that Jenkins is still able to use them.
As version 2.0.0 only updates default values and nothing else it's still possible to migrate to this version and opt out of some or all new defaults. All you have to do is ensure the old values are set in your installation.
Here we show which values have changed and the previous default values:
controller:
runAsUser: 1000 # was unset before
fsGroup: 1000 # was unset before
JCasC:
enabled: true # was false
defaultConfig: true # was false
sidecars:
configAutoReload:
enabled: true # was false
Migration instructions heavily depend on your current setup. So think of the list below more as a general guideline of what should be done.
-
Ensure that the Jenkins image you are using contains a user with id 1000 and a group with the same id. That's the case for
jenkins/jenkins:lts
image, which the chart uses by default -
Make a backup of your existing installation especially the persistent volume
-
Ensure that you have the configuration as code plugin installed
-
Export your current settings via the plugin:
Manage Jenkins
->Configuration as Code
->Download Configuration
-
prepare your values file for the update e.g. add additional configuration as code setting that you need. The export taken from above might be a good starting point for this. In addition, the demos from the plugin itself are quite useful.
-
Test drive those setting on a separate installation
-
Put Jenkins to Quiet Down mode so that it does not accept new jobs
<JENKINS_URL>/quietDown
-
Change permissions of all files and folders to the new user and group id:
kubectl exec -it <jenkins_pod> -c jenkins /bin/bash chown -R 1000:1000 /var/jenkins_home
-
Update Jenkins
Breaking changes:
- Values have been renamed to follow helm recommended naming conventions so that all variables start with a lowercase letter and words are separated with camelcase
- All resources are now using helm recommended standard labels
As a result of the label changes also the selectors of the deployment have been updated. Those are immutable so trying an updated will cause an error like:
Error: Deployment.apps "jenkins" is invalid: spec.selector: Invalid value: v1.LabelSelector{MatchLabels:map[string]string{"app.kubernetes.io/component":"jenkins-controller", "app.kubernetes.io/instance":"jenkins"}, MatchExpressions:[]v1.LabelSelectorRequirement(nil)}: field is immutable
In order to upgrade, uninstall the Jenkins Deployment before upgrading: