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: CONTRIBUTING.md
+40-28Lines changed: 40 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,9 @@ minikube service chart-$CHART
32
32
- Must follow [Charts best practices](https://helm.sh/docs/topics/chart_best_practices/)
33
33
- Must pass CI jobs for linting and installing changed charts with the [chart-testing](https://github.com/helm/chart-testing) tool
34
34
- Any change to a chart requires a version bump following [SemVer](https://semver.org/) principles. See [Immutability](#immutability) and [Versioning](#versioning) below
35
+
- Bump the `version` key in [charts/jenkins/Chart.yaml](charts/jenkins/Chart.yaml)
36
+
- Add a new changelog entry to [charts/jenkins/CHANGELOG.md](charts/jenkins/CHANGELOG.md) with the new version and a description of the change
37
+
- Run `.github/helm-docs.sh` from the project root. This will update the [charts/jenkins/VALUES.md](charts/jenkins/VALUES.md) file with changes you made in [charts/jenkins/values.yaml](charts/jenkins/values.yaml)
35
38
36
39
Once changes have been merged, the release job will automatically run to package and release changed charts.
37
40
@@ -43,45 +46,54 @@ Tests can be executed like this:
PASS Instance cap tests charts/jenkins/unittests/instance-cap-test.yaml
62
+
2026/03/31 08:28:09 warning: destination for jenkins.controller.projectNamingStrategy is a table. Ignoring non-table value (standard)
63
+
2026/03/31 08:28:09 warning: cannot overwrite table with non table for jenkins.controller.JCasC.security.apiToken (map[creationOfLegacyTokenEnabled:false tokenGenerationOnCreationEnabled:false usageStatisticsEnabled:true])
64
+
PASS Configuration as Code charts/jenkins/unittests/jcasc-config-test.yaml
65
+
PASS Jenkins Agent Service charts/jenkins/unittests/jenkins-agent-svc-test.yaml
PASS Controller Service Account charts/jenkins/unittests/service-account-agent-test.yaml
85
+
PASS Controller Service Account charts/jenkins/unittests/service-account-test.yaml
77
86
78
87
Charts: 1 passed, 1 total
79
-
Test Suites: 24 passed, 24 total
80
-
Tests: 119 passed, 119 total
81
-
Snapshot: 1 passed, 1 total
82
-
Time: 440.35914ms
88
+
Test Suites: 28 passed, 28 total
89
+
Tests: 214 passed, 214 total
90
+
Snapshot: 50 passed, 50 total
91
+
Time: 2.2434989s
83
92
```
84
93
94
+
> **Note!**
95
+
> Some warnings in the sample output are expected. A few unit tests intentionally provide values with a different type than the chart defaults to verify how the templates handle those inputs.
96
+
85
97
### Immutability
86
98
87
99
Chart releases must be immutable. Any change to a chart warrants a chart version bump even if it is only a change to the documentation.
Copy file name to clipboardExpand all lines: charts/jenkins/Chart.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ apiVersion: v2
2
2
name: jenkins
3
3
type: application
4
4
home: https://www.jenkins.io/
5
-
version: 5.9.12
5
+
version: 5.9.13
6
6
appVersion: 2.541.3
7
7
description: >
8
8
Jenkins - Build great things at any scale! As the leading open source automation server, Jenkins provides over 2000 plugins to support building, deploying and automating any project.
0 commit comments