Skip to content

Commit 5c22a40

Browse files
REL-2987 Upgrade to SonarQube 10.4 (#418)
1 parent 67b328f commit 5c22a40

File tree

8 files changed

+19
-13
lines changed

8 files changed

+19
-13
lines changed

charts/sonarqube-dce/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
All changes to this chart will be documented in this file.
33

44
## [10.4.0]
5+
* Upgrade SonarQube to 10.4.0
56
* Update Chart's version to 10.4.0
67
* Improve the description of deprecated `ApplicationNodes.jvmOpts` and `ApplicationNodes.jvmCeOpts` values
78
* Run the initSysctl init-container as root to prevent 'permission denied' issues

charts/sonarqube-dce/Chart.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: sonarqube-dce
33
description: SonarQube is a self-managed, automatic code review tool that systematically helps you deliver clean code. As a core element of our Sonar solution, SonarQube integrates into your existing workflow and detects issues in your code to help you perform continuous code inspections of your projects. The tool analyses 30+ different programming languages and integrates into your CI pipeline and DevOps platform to ensure that your code meets high-quality standards.
44
type: application
55
version: 10.4.0
6-
appVersion: 10.3.0
6+
appVersion: 10.4.0
77
keywords:
88
- coverage
99
- security
@@ -27,6 +27,8 @@ maintainers:
2727
2828
annotations:
2929
artifacthub.io/changes: |
30+
- kind: changed
31+
description: "Upgrade SonarQube to 10.4.0"
3032
- kind: changed
3133
description: "Update Chart's version to 10.4.0"
3234
- kind: fixed
@@ -49,9 +51,9 @@ annotations:
4951
artifacthub.io/containsSecurityUpdates: "false"
5052
artifacthub.io/images: |
5153
- name: sonarqube-app
52-
image: sonarqube:10.3.0-datacenter-app
54+
image: sonarqube:10.4.0-datacenter-app
5355
- name: sonarqube-search
54-
image: sonarqube:10.3.0-datacenter-search
56+
image: sonarqube:10.4.0-datacenter-search
5557
dependencies:
5658
- name: postgresql
5759
version: 10.15.0

charts/sonarqube-dce/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Please note that this chart does NOT support SonarQube Community, Developer, and
1414

1515
## Compatibility
1616

17-
Compatible SonarQube Version: `10.3.0`
17+
Compatible SonarQube Version: `10.4.0`
1818

1919
Supported Kubernetes Versions: From `1.24` to `1.28`
2020

@@ -175,7 +175,7 @@ The following table lists the configurable parameters of the SonarQube chart and
175175
| Parameter | Description | Default |
176176
| --------------------------------------------------------- | ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
177177
| `searchNodes.image.repository` | search image repository | `sonarqube` |
178-
| `searchNodes.image.tag` | search image tag | `10.3.0-datacenter-search` |
178+
| `searchNodes.image.tag` | search image tag | `10.4.0-datacenter-search` |
179179
| `searchNodes.image.pullPolicy` | search image pull policy | `IfNotPresent` |
180180
| `searchNodes.image.pullSecret` | (DEPRECATED) search imagePullSecret to use for private repository | `nil` |
181181
| `searchNodes.image.pullSecrets` | search imagePullSecrets to use for private repository | `nil` |
@@ -225,7 +225,7 @@ The following table lists the configurable parameters of the SonarQube chart and
225225
| Parameter | Description | Default |
226226
| ---------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
227227
| `ApplicationNodes.image.repository` | app image repository | `sonarqube` |
228-
| `ApplicationNodes.image.tag` | app image tag | `10.3.0-datacenter-app` |
228+
| `ApplicationNodes.image.tag` | app image tag | `10.4.0-datacenter-app` |
229229
| `ApplicationNodes.image.pullPolicy` | app image pull policy | `IfNotPresent` |
230230
| `ApplicationNodes.image.pullSecret` | (DEPRECATED) app imagePullSecret to use for private repository | `nil` |
231231
| `ApplicationNodes.image.pullSecrets` | app imagePullSecrets to use for private repository | `nil` |

charts/sonarqube-dce/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
searchNodes:
66
image:
77
repository: sonarqube
8-
tag: 10.3.0-datacenter-search
8+
tag: 10.4.0-datacenter-search
99
pullPolicy: IfNotPresent
1010
# If using a private repository, the imagePullSecrets to use
1111
# pullSecrets:
@@ -142,7 +142,7 @@ searchNodes:
142142
ApplicationNodes:
143143
image:
144144
repository: sonarqube
145-
tag: 10.3.0-datacenter-app
145+
tag: 10.4.0-datacenter-app
146146
pullPolicy: IfNotPresent
147147
# If using a private repository, the imagePullSecrets to use
148148
# pullSecrets:

charts/sonarqube/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
All changes to this chart will be documented in this file.
33

44
## [10.4.0]
5+
* Upgrade SonarQube to 10.4.0
56
* Update Chart's version to 10.4.0
67
* Improve the description of deprecated `jvmOpts` and `jvmCeOpts` values
78
* Run the initSysctl init-container as root to prevent 'permission denied' issues

charts/sonarqube/Chart.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: sonarqube
33
description: SonarQube is a self-managed, automatic code review tool that systematically helps you deliver clean code. As a core element of our Sonar solution, SonarQube integrates into your existing workflow and detects issues in your code to help you perform continuous code inspections of your projects. The tool analyses 30+ different programming languages and integrates into your CI pipeline and DevOps platform to ensure that your code meets high-quality standards.
44
type: application
55
version: 10.4.0
6-
appVersion: 10.3.0
6+
appVersion: 10.4.0
77
keywords:
88
- coverage
99
- security
@@ -32,6 +32,8 @@ annotations:
3232
- name: Chart Source
3333
url: https://github.com/SonarSource/helm-chart-sonarqube/tree/master/charts/sonarqube
3434
artifacthub.io/changes: |
35+
- kind: changed
36+
description: "Upgrade SonarQube to 10.4.0"
3537
- kind: changed
3638
description: "Update Chart's version to 10.4.0"
3739
- kind: fixed
@@ -47,7 +49,7 @@ annotations:
4749
artifacthub.io/containsSecurityUpdates: "false"
4850
artifacthub.io/images: |
4951
- name: sonarqube
50-
image: sonarqube:10.3.0-community
52+
image: sonarqube:10.4.0-community
5153
dependencies:
5254
- name: postgresql
5355
version: 10.15.0

charts/sonarqube/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Please note that this chart only supports SonarQube Community, Developer, and En
1414

1515
## Compatibility
1616

17-
Compatible SonarQube Version: `10.3.0`
17+
Compatible SonarQube Version: `10.4.0`
1818

1919
Supported Kubernetes Versions: From `1.24` to `1.28`
2020

@@ -214,7 +214,7 @@ The following table lists the configurable parameters of the SonarQube chart and
214214
| Parameter | Description | Default |
215215
| ------------------- | ---------------------------------------------------------- | ------------------------------ |
216216
| `image.repository` | image repository | `sonarqube` |
217-
| `image.tag` | `sonarqube` image tag. | `10.3.0-{{ .Values.edition }}` |
217+
| `image.tag` | `sonarqube` image tag. | `10.4.0-{{ .Values.edition }}` |
218218
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
219219
| `image.pullSecret` | (DEPRECATED) imagePullSecret to use for private repository | `None` |
220220
| `image.pullSecrets` | imagePullSecrets to use for private repository | `None` |

charts/sonarqube/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ edition: "community"
3030

3131
image:
3232
repository: sonarqube
33-
tag: 10.3.0-{{ .Values.edition }}
33+
tag: 10.4.0-{{ .Values.edition }}
3434
pullPolicy: IfNotPresent
3535
# If using a private repository, the imagePullSecrets to use
3636
# pullSecrets:

0 commit comments

Comments
 (0)