2018-06-27 16:26:49 +02:00
|
|
|
# Molgenis Jenkins Helm Chart
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
Jenkins master and slave cluster utilizing the Jenkins Kubernetes plugin.
|
|
|
|
Wraps [the kuberenetes jenkins chart](https://github.com/kubernetes/charts/tree/master/stable/jenkins), see documentation there!
|
2018-06-26 14:35:43 +02:00
|
|
|
|
|
|
|
## Chart Details
|
|
|
|
|
|
|
|
This chart will do the following:
|
|
|
|
|
2018-06-26 15:06:35 +02:00
|
|
|
* 1 x Jenkins Master with port 8080 exposed on an external ClusterIP
|
2018-06-26 14:35:43 +02:00
|
|
|
* All using Kubernetes Deployments
|
|
|
|
|
|
|
|
## Installing the Chart
|
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
Usually, you'll be deploying this to the molgenis cluster.
|
|
|
|
In the [Rancher Catalog](https://rancher.molgenis.org:7443/g/catalog), add the latest version of this repository.
|
|
|
|
In the [molgenis cluster management page](https://rancher.molgenis.org:7443/p/c-mhkqb:project-2pf45/apps), choose the
|
|
|
|
catalog, pick the molgenis-jenkins app from the catalog and deploy it.
|
2018-06-26 14:35:43 +02:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
When deploying, you can paste values into the Rancher Answers to override the defaults in this chart.
|
|
|
|
Array values can be added as {value, value, value}.
|
2018-06-26 15:06:35 +02:00
|
|
|
```
|
2018-06-29 09:53:48 +02:00
|
|
|
jenkins.Master.HostName=jenkins.molgenis.org
|
|
|
|
jenkins.Master.AdminPassword=pa$$word
|
|
|
|
jenkins.Persistence.Enabled=false
|
2018-06-27 16:26:49 +02:00
|
|
|
jenkins.Master.InstallPlugins={kubernetes:1.8.4, workflow-aggregator:2.5, workflow-job:2.21, credentials-binding:1.16, git:3.9.1}
|
2018-06-29 09:53:48 +02:00
|
|
|
PipelineSecrets.Env.PGPPassphrase=literal:S3cr3t
|
2018-06-26 15:06:35 +02:00
|
|
|
```
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
You can use [all configuration values of the jenkins subchart](https://github.com/kubernetes/charts/tree/master/stable/jenkins).
|
|
|
|
> Because we use jenkins as a sub-chart, you should prefix all value keys with `jenkins`!
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
There is one additional group of configuration items specific for this chart, so not prefixed with `jenkins`:
|
|
|
|
## PipelineSecrets
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
When deployed, the chart creates a couple of kubernetes secrets that get used by jenkins and mounted in the jenkins
|
|
|
|
build pods. The secrets, like the rest of the deployment, is namespaced so multiple instances can run beside
|
|
|
|
each other with their own secrets.
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
You can override the values at deploy time but otherwise also configure them
|
|
|
|
[in Rancher](https://rancher.molgenis.org:7443/p/c-mhkqb:project-2pf45/secrets) or through kubectl.
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
### Env
|
|
|
|
Environment variables stored in molgenis-pipeline-env secret, to be added as environment variables
|
|
|
|
in the slave pods.
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
| Parameter | Description | Default |
|
|
|
|
| ---------------------------------- | ------------------------------------ | --------------- |
|
|
|
|
| `PipelineSecrets.Env.Replace` | Replace molgenis-pipeline-env secret | `true` |
|
|
|
|
| `PipelineSecrets.Env.PGPPassphrase`| passphrase for the pgp signing key | `literal:xxxx` |
|
|
|
|
| `PipelineSecrets.Env.CodecovToken` | token for codecov.io | `xxxx` |
|
|
|
|
| `PipelineSecrets.Env.GithubToken` | token for GH molgenis-jenkins user | `xxxx` |
|
|
|
|
| `PipelineSecrets.Env.SonarToken` | token for sonarcloud.io | `xxxx` | |
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
### File
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
Environment variables stored in molgenis-pipeline-file secret, to be mounted as files
|
|
|
|
in the `/root/.m2` directory of the slave pods.
|
|
|
|
> The settings.xml file references the
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
| Parameter | Description | Default |
|
|
|
|
| -------------------------------------- | ------------------------------------- | ------------------------------------------------------------------------------- |
|
|
|
|
| `PipelineSecrets.File.Replace` | Replace molgenis-pipeline-file secret | `true` |
|
|
|
|
| `PipelineSecrets.File.PGPPrivateKeyAsc`| pgp signing key in ascii form | `-----BEGIN PGP PRIVATE KEY BLOCK-----xxxxx-----END PGP PRIVATE KEY BLOCK-----` |
|
|
|
|
| `PipelineSecrets.File.MavenSettingsXML`| Maven settings.xml file | `<settings>[...]</settings>` (see actual [values.yaml](values.yaml)) |
|
2018-06-26 14:35:43 +02:00
|
|
|
|
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
## Command line use
|
|
|
|
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
|
2018-06-26 14:35:43 +02:00
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart.
|
|
|
|
For example,
|
2018-06-26 14:35:43 +02:00
|
|
|
|
|
|
|
```bash
|
2018-06-29 09:53:48 +02:00
|
|
|
$ helm install --name jenkins -f values.yaml molgenis-jenkins
|
2018-06-26 14:35:43 +02:00
|
|
|
```
|
|
|
|
|
2018-06-29 09:53:48 +02:00
|
|
|
> **Tip**: You can use the default [values.yaml](values.yaml)
|
2018-06-26 14:35:43 +02:00
|
|
|
|