Skip to content

Commit 2a060e7

Browse files
REL-3067 Upgrade SonarQube to 10.5.0
1 parent f4dc8f7 commit 2a060e7

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.5.0]
5+
* Upgrade SonarQube to 10.5.0
56
* Update Chart's version to 10.5.0
67
* Update nginx-ingress-controller dependency to version 4.9.1
78
* Fix the ingress.ingressClassName not being evaluated

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.5.0
6-
appVersion: 10.4.0
6+
appVersion: 10.5.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.5.0"
3032
- kind: changed
3133
description: "Update Chart's version to 10.5.0"
3234
- kind: changed
@@ -69,9 +71,9 @@ annotations:
6971
artifacthub.io/containsSecurityUpdates: "false"
7072
artifacthub.io/images: |
7173
- name: sonarqube-app
72-
image: sonarqube:10.4.0-datacenter-app
74+
image: sonarqube:10.5.0-datacenter-app
7375
- name: sonarqube-search
74-
image: sonarqube:10.4.0-datacenter-search
76+
image: sonarqube:10.5.0-datacenter-search
7577
dependencies:
7678
- name: postgresql
7779
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.4.0`
17+
Compatible SonarQube Version: `10.5.0`
1818

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

@@ -201,7 +201,7 @@ The following table lists the configurable parameters of the SonarQube chart and
201201
| Parameter | Description | Default |
202202
| --------------------------------------------------------- | ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
203203
| `searchNodes.image.repository` | search image repository | `sonarqube` |
204-
| `searchNodes.image.tag` | search image tag | `10.4.0-datacenter-search` |
204+
| `searchNodes.image.tag` | search image tag | `10.5.0-datacenter-search` |
205205
| `searchNodes.image.pullPolicy` | search image pull policy | `IfNotPresent` |
206206
| `searchNodes.image.pullSecret` | (DEPRECATED) search imagePullSecret to use for private repository | `nil` |
207207
| `searchNodes.image.pullSecrets` | search imagePullSecrets to use for private repository | `nil` |
@@ -253,7 +253,7 @@ The following table lists the configurable parameters of the SonarQube chart and
253253
| Parameter | Description | Default |
254254
| ---------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
255255
| `ApplicationNodes.image.repository` | app image repository | `sonarqube` |
256-
| `ApplicationNodes.image.tag` | app image tag | `10.4.0-datacenter-app` |
256+
| `ApplicationNodes.image.tag` | app image tag | `10.5.0-datacenter-app` |
257257
| `ApplicationNodes.image.pullPolicy` | app image pull policy | `IfNotPresent` |
258258
| `ApplicationNodes.image.pullSecret` | (DEPRECATED) app imagePullSecret to use for private repository | `nil` |
259259
| `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.4.0-datacenter-search
8+
tag: 10.5.0-datacenter-search
99
pullPolicy: IfNotPresent
1010
# If using a private repository, the imagePullSecrets to use
1111
# pullSecrets:
@@ -145,7 +145,7 @@ searchNodes:
145145
ApplicationNodes:
146146
image:
147147
repository: sonarqube
148-
tag: 10.4.0-datacenter-app
148+
tag: 10.5.0-datacenter-app
149149
pullPolicy: IfNotPresent
150150
# If using a private repository, the imagePullSecrets to use
151151
# 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.5.0]
5+
* Upgrade SonarQube to 10.5.0
56
* Update Chart's version to 10.5.0
67
* Update nginx-ingress-controller dependency to version 4.9.1
78
* Set `automountServiceAccountToken` to false in pod's specifications

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.5.0
6-
appVersion: 10.4.0
6+
appVersion: 10.5.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.5.0"
3537
- kind: changed
3638
description: "Update Chart's version to 10.5.0"
3739
- kind: changed
@@ -59,7 +61,7 @@ annotations:
5961
artifacthub.io/containsSecurityUpdates: "false"
6062
artifacthub.io/images: |
6163
- name: sonarqube
62-
image: sonarqube:10.4.0-community
64+
image: sonarqube:10.5.0-community
6365
dependencies:
6466
- name: postgresql
6567
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.4.0`
17+
Compatible SonarQube Version: `10.5.0`
1818

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

@@ -238,7 +238,7 @@ The following table lists the configurable parameters of the SonarQube chart and
238238
| Parameter | Description | Default |
239239
| ------------------- | ---------------------------------------------------------- | ------------------------------ |
240240
| `image.repository` | image repository | `sonarqube` |
241-
| `image.tag` | `sonarqube` image tag. | `10.4.0-{{ .Values.edition }}` |
241+
| `image.tag` | `sonarqube` image tag. | `10.5.0-{{ .Values.edition }}` |
242242
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
243243
| `image.pullSecret` | (DEPRECATED) imagePullSecret to use for private repository | `None` |
244244
| `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.4.0-{{ .Values.edition }}
33+
tag: 10.5.0-{{ .Values.edition }}
3434
pullPolicy: IfNotPresent
3535
# If using a private repository, the imagePullSecrets to use
3636
# pullSecrets:

0 commit comments

Comments
 (0)