You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/jenkins/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@ Use the following links to reference issues, PRs, and commits prior to v2.6.0.
10
10
11
11
The change log until v1.5.7 was auto-generated based on git commits. Those entries include a reference to the git commit to be able to get more details.
12
12
13
+
## 2.12.1
14
+
15
+
Helm chart README update
16
+
13
17
## 2.12.0
14
18
15
19
Add option to configure securityContext capabilities
Copy file name to clipboardExpand all lines: charts/jenkins/README.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,6 @@ _See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documen
55
55
Visit the chart's [CHANGELOG](./CHANGELOG.md) to view the chart's release history.
56
56
For migration between major version check [migration guide](#migration-guide).
57
57
58
-
59
58
## Configuration
60
59
61
60
See [Customizing the Chart Before Installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with detailed comments, visit the chart's [values.yaml](./values.yaml), or run these configuration commands:
@@ -114,7 +113,7 @@ master:
114
113
115
114
Keep in mind that default configuration file already contains some values that you won't be able to override under configScripts section.
116
115
117
-
For example, you can not configure Jenkins URL and System Admin e-mail address like this because of conflictig configuration error.
116
+
For example, you can not configure Jenkins URL and System Admin e-mail address like this because of conflicting configuration error.
118
117
119
118
Incorrect:
120
119
@@ -159,6 +158,7 @@ rbac:
159
158
```
160
159
161
160
### Allow Limited HTML Markup in User-Submitted Text
161
+
162
162
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).
163
163
To display such data as processed HTML instead of raw text set `master.enableRawHtmlMarkupFormatter` to true.
164
164
This option requires installation of the [OWASP Markup Formatter Plugin (antisamy-markup-formatter)](https://plugins.jenkins.io/antisamy-markup-formatter/).
@@ -249,7 +249,6 @@ It is possible to define which storage class to use, by setting `persistence.sto
249
249
If set to a dash (`-`), dynamic provisioning is disabled.
250
250
If the storage class is set to null or left undefined (`""`), the default provisioner is used (gp2 on AWS, standard on GKE, AWS & OpenStack).
251
251
252
-
253
252
### RBAC
254
253
255
254
RBAC is enabled by default. If you want to disable it you will need to set `rbac.create` to `false`.
@@ -264,7 +263,6 @@ To restore a backup, you can use the `kube-tasks` underlying tool called [skbn](
264
263
The best way to do it would be using a `Job` to copy files from the desired backup tag to the Jenkins pod.
265
264
See the [skbn in-cluster example](https://github.com/maorfr/skbn/tree/master/examples/in-cluster) for more details.
266
265
267
-
268
266
### Providing Jobs XML
269
267
270
268
Jobs can be created (and overwritten) by providing jenkins config xml within the `values.yaml` file.
@@ -448,7 +446,7 @@ Finally, you'll need to wrap the contents of `templates/config.tpl` like so:
448
446
449
447
[This configuration](https://wiki.jenkins.io/pages/viewpage.action?pageId=135468777) enables jenkins to use keystore in order to serve https.
450
448
Here is the [value file section](https://wiki.jenkins.io/pages/viewpage.action?pageId=135468777#RunningJenkinswithnativeSSL/HTTPS-ConfigureJenkinstouseHTTPSandtheJKSkeystore) related to keystore configuration.
451
-
Keystore itself should be placed in front of `jenkinsKeyStoreBase64Encoded` key and in base64 encoded format. To achive that after having `keystore.jks` file simply do this: `cat keystore.jks | base64`and paste the output in front of `jenkinsKeyStoreBase64Encoded`.
449
+
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`.
452
450
After enabling `httpsKeyStore.enable` make sure that `httpPort` and `targetPort` are not the same, as `targetPort` will serve https.
453
451
Do not set `master.httpsKeyStore.httpPort` to `-1` because it will cause readiness and liveliness prob to fail.
454
452
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:
0 commit comments