Add a bit of extra words to make complete sentences

This commit is contained in:
Jon Brohauge 2019-10-16 19:47:43 +02:00
parent e65508bd19
commit 6cb180cda1
No known key found for this signature in database
GPG Key ID: 2402404D1764DBE8
1 changed files with 5 additions and 5 deletions

View File

@ -7,12 +7,12 @@ description: >
How to customize Jenkins
---
Jenkins can be customized using groovy scripts or the configuration as code plugin. All custom configuration is stored in
the **jenkins-operator-user-configuration-<cr_name>** ConfigMap which is automatically created by the **Jenkins Operator**.
Jenkins can be customized using by groovy scripts or the Jenkins Configuration as Code Plugin. All custom configuration is stored in
the **jenkins-operator-user-configuration-<cr_name>** ConfigMap, which is automatically created by the **Jenkins Operator**.
The **Jenkins Operator** creates a **jenkins-operator-user-configuration-<cr_name>** secret where the user can store sensitive
information used for custom configuration. If you have an entry in the secret named `PASSWORD` then you can use it in the
Configuration as Plugin as `adminAddress: "${PASSWORD}"`.
Jenkins Configuration as Code Plugin as `adminAddress: "${PASSWORD}"`.
```
kubectl get secret jenkins-operator-user-configuration-<cr_name> -o yaml
@ -63,8 +63,8 @@ metadata:
namespace: default
```
When the **jenkins-operator-user-configuration-<cr_name>** ConfigMap is updated Jenkins automatically
runs the **jenkins-operator-user-configuration** Jenkins Job which executes all scripts then
When the **jenkins-operator-user-configuration-<cr_name>** ConfigMap is updated, Jenkins automatically
runs the **jenkins-operator-user-configuration** Jenkins Job which executes all scripts, and then
runs the **jenkins-operator-user-configuration-casc** Jenkins Job which applies the Configuration as Code configuration.
## Install Plugins