Skip to content

Commit 007aa4d

Browse files
REL-3507 Update the community-build number included in the release
1 parent 7fdcabe commit 007aa4d

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

charts/sonarqube/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ All changes to this chart will be documented in this file.
44
## [2025.1.0]
55
* Update Chart's version to 2025.1.0
66
* Upgrade SonarQube Server to 2025.1.0
7+
* Upgrade SonarQube Community Build to 25.1.0.102122
78
* Update ingress-nginx subchart to 4.11.3
89
* Support Kubernetes v1.32
910
* Remove the default passcode provided with `monitoringPasscode`

charts/sonarqube/Chart.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ annotations:
3434
description: "Update Chart's version to 2025.1.0"
3535
- kind: changed
3636
description: "Upgrade SonarQube Server to 2025.1.0"
37+
- kind: changed
38+
description: "Upgrade SonarQube Community Build to 25.1.0.102122"
3739
- kind: changed
3840
description: "Update ingress-nginx subchart to 4.11.3"
3941
- kind: changed
@@ -47,7 +49,7 @@ annotations:
4749
artifacthub.io/containsSecurityUpdates: "false"
4850
artifacthub.io/images: |
4951
- name: sonarqube
50-
image: sonarqube:24.12.0.100206-community
52+
image: sonarqube:25.1.0.102122-community
5153
charts.openshift.io/name: sonarqube
5254
dependencies:
5355
- name: postgresql

charts/sonarqube/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Please note that this chart only supports SonarQube Server Developer and Enterpr
1515
## Compatibility
1616

1717
Compatible SonarQube Server Version: `2025.1.0`
18-
Compatible SonarQube Community Build: `24.12.0.100206`
18+
Compatible SonarQube Community Build: `25.1.0.102122`
1919

2020
Supported Kubernetes Versions: From `1.29` to `1.32`
2121
Supported Openshift Versions: From `4.11` to `4.17`
@@ -268,7 +268,7 @@ The following table lists the configurable parameters of the SonarQube chart and
268268
| `annotations` | SonarQube Pod annotations | `{}` |
269269
| `edition` | SonarQube Edition to use (`developer` or `enterprise`). | `None` |
270270
| `community.enabled` | Install SonarQube Community Build. When set to `true`, `edition` must not be set. | `false` |
271-
| `community.buildNumber` | The SonarQube Community Build number to install | `24.12.0.100206` |
271+
| `community.buildNumber` | The SonarQube Community Build number to install | `25.1.0.102122` |
272272
| `sonarWebContext` | SonarQube web context, also serve as default value for `ingress.path`, `account.sonarWebContext` and probes path. | `` |
273273
| `httpProxySecret` | Should contain `http_proxy`, `https_proxy` and `no_proxy` keys, will supersede every other proxy variables | `` |
274274
| `httpProxy` | HTTP proxy for downloading JMX agent and install plugins, will supersede initContainer specific http proxy variables | `` |

charts/sonarqube/ci/cirrus-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ image:
55
pullSecrets:
66
- name: pullsecret
77
repository: "sonarsource/sonarqube"
8-
tag: "24.12.0.100206-community"
8+
tag: "25.1.0.102122-community"
99
monitoringPasscode: "test"
1010
postgresql:
1111
securityContext:

charts/sonarqube/openshift-verifier/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ image:
1616
pullSecrets:
1717
- name: pullsecret
1818
repository: "sonarsource/sonarqube"
19-
tag: "24.12.0.100206-community"
19+
tag: "25.1.0.102122-community"
2020

2121
monitoringPasscode: "test"

charts/sonarqube/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ OpenShift:
5454
# Set the chart to use the latest released SonarQube Community Build
5555
community:
5656
enabled: false
57-
buildNumber: "24.12.0.100206"
57+
buildNumber: "25.1.0.102122"
5858

5959
image:
6060
repository: sonarqube

tests/unit-test/schema_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func TestNoTagLatestCommunity(t *testing.T) {
8080
var renderedTemplate appsv1.StatefulSet
8181
helm.UnmarshalK8SYaml(t, output, &renderedTemplate)
8282

83-
expectedContainerImage := "sonarqube:24.12.0.100206-community"
83+
expectedContainerImage := "sonarqube:25.1.0.102122-community"
8484
actualContainers := renderedTemplate.Spec.Template.Spec.Containers
8585
assert.Equal(t, 1, len(actualContainers))
8686
assert.Equal(t, expectedContainerImage, actualContainers[0].Image)
@@ -116,7 +116,7 @@ func TestShouldUseBuildNumber(t *testing.T) {
116116
var renderedTemplate appsv1.StatefulSet
117117
helm.UnmarshalK8SYaml(t, output, &renderedTemplate)
118118

119-
expectedContainerImage := "sonarqube:24.12.0.99999-community"
119+
expectedContainerImage := "sonarqube:25.1.0.102122-community"
120120
actualContainers := renderedTemplate.Spec.Template.Spec.Containers
121121
assert.Equal(t, 1, len(actualContainers))
122122
assert.Equal(t, expectedContainerImage, actualContainers[0].Image)
@@ -187,7 +187,7 @@ func TestCiCirrusValues(t *testing.T) {
187187
var renderedTemplate appsv1.StatefulSet
188188
helm.UnmarshalK8SYaml(t, output, &renderedTemplate)
189189

190-
expectedContainerImage := "sonarsource/sonarqube:24.12.0.100206-community"
190+
expectedContainerImage := "sonarsource/sonarqube:25.1.0.102122-community"
191191
actualContainers := renderedTemplate.Spec.Template.Spec.Containers
192192
assert.Equal(t, 1, len(actualContainers))
193193
assert.Equal(t, expectedContainerImage, actualContainers[0].Image)
@@ -202,7 +202,7 @@ func TestCiOpenshiftVerifierValues(t *testing.T) {
202202
var renderedTemplate appsv1.StatefulSet
203203
helm.UnmarshalK8SYaml(t, output, &renderedTemplate)
204204

205-
expectedContainerImage := "sonarsource/sonarqube:24.12.0.100206-community"
205+
expectedContainerImage := "sonarsource/sonarqube:25.1.0.102122-community"
206206
actualContainers := renderedTemplate.Spec.Template.Spec.Containers
207207
assert.Equal(t, 1, len(actualContainers))
208208
assert.Equal(t, expectedContainerImage, actualContainers[0].Image)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
community:
22
enabled: true
3-
buildNumber: "24.12.0.99999"
3+
buildNumber: "25.1.0.102122"

0 commit comments

Comments
 (0)