Skip to content

Commit 4b0a741

Browse files
REL-2439 Upgrade charts for SonarQube 9.7
1 parent c9b4459 commit 4b0a741

File tree

6 files changed

+62
-14
lines changed

6 files changed

+62
-14
lines changed

charts/sonarqube-dce/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# SonarQube Chart Changelog
22
All changes to this chart will be documented in this file.
33

4+
## [5.0.0]
5+
* Updated SonarQube to 9.7.0
6+
*
47
## [4.3.1]
58
* Fix the right-dash curly brace issue with the additional network policy parameter
69

charts/sonarqube-dce/Chart.yaml

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: sonarqube-dce
33
description: SonarQube offers Code Quality and Code Security analysis for up to 27 languages. Find Bugs, Vulnerabilities, Security Hotspots and Code Smells throughout your workflow.
44
type: application
5-
version: 4.3.1
6-
appVersion: 9.6.1
5+
version: 5.0.0
6+
appVersion: 9.7.0
77
keywords:
88
- coverage
99
- security
@@ -19,20 +19,40 @@ maintainers:
1919
- name: leo-geoffroy-sonarsource
2020
2121
annotations:
22+
artifacthub.io/changes: |
23+
- kind: changed
24+
description: "Updated SonarQube to 9.7.0"
25+
- kind: fixed
26+
description: "Fix the right-dash curly brace issue with the additional network policy parameter"
27+
- kind: added
28+
description: "Allow `tests.image` to be configured and update README accordingly"
29+
- kind: added
30+
description: "Allow `tests.initContainers.image` to be configured and update README accordingly"
31+
- kind: fixed
32+
description: "Fix wrong image's tag in application nodes"
33+
- kind: added
34+
description: "Add support for monitoringPasscode passed as a secret and removal of livenessprobe httpheader defined in clear text"
35+
- kind: added
36+
description: "Add the possibility of using a secret for customizing the admin password"
37+
- kind: removed
38+
description: "Remove unreachable condition and fix the right values for sonarProperties and sonarSecretProperties"
39+
- kind: changed
40+
description: "Bump apiVersion to v2"
41+
- kind: added
42+
description: "Add documentation for ApplicationNodes.jwtSecret"
43+
- kind: added
44+
description: "Add documentation for ingress tls"
2245
artifacthub.io/links: |
2346
- name: support
2447
url: https://community.sonarsource.com/
2548
- name: Chart Source
2649
url: https://github.com/SonarSource/helm-chart-sonarqube/tree/master/charts/sonarqube-dce
27-
artifacthub.io/changes: |
28-
- kind: changed
29-
description: "Updated SonarQube to 9.6.1"
3050
artifacthub.io/containsSecurityUpdates: "false"
3151
artifacthub.io/images: |
3252
- name: sonarqube-app
33-
image: sonarqube:9.6.1-datacenter-app
53+
image: sonarqube:9.7.0-datacenter-app
3454
- name: sonarqube-search
35-
image: sonarqube:9.6.1-datacenter-search
55+
image: sonarqube:9.7.0-datacenter-search
3656
dependencies:
3757
- name: postgresql
3858
version: 10.15.0

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: 9.6.1-datacenter-search
8+
tag: 9.7.0-datacenter-search
99
pullPolicy: IfNotPresent
1010
# If using a private repository, the imagePullSecrets to use
1111
# pullSecrets:
@@ -113,7 +113,7 @@ searchNodes:
113113
ApplicationNodes:
114114
image:
115115
repository: sonarqube
116-
tag: 9.6.1-datacenter-app
116+
tag: 9.7.0-datacenter-app
117117
pullPolicy: IfNotPresent
118118
# If using a private repository, the imagePullSecrets to use
119119
# pullSecrets:

charts/sonarqube/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# SonarQube Chart Changelog
22
All changes to this chart will be documented in this file.
33

4+
## [6.0.0]
5+
* Updated SonarQube to 9.7.0
6+
47
## [5.4.1]
58
* Fix the right-dash curly brace issue with the additional network policy parameter
69

charts/sonarqube/Chart.yaml

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: sonarqube
33
description: SonarQube offers Code Quality and Code Security analysis for up to 27 languages. Find Bugs, Vulnerabilities, Security Hotspots and Code Smells throughout your workflow.
44
type: application
5-
version: 5.4.1
6-
appVersion: 9.6.1
5+
version: 6.0.0
6+
appVersion: 9.7.0
77
keywords:
88
- coverage
99
- security
@@ -26,11 +26,33 @@ annotations:
2626
url: https://github.com/SonarSource/helm-chart-sonarqube/tree/master/charts/sonarqube
2727
artifacthub.io/changes: |
2828
- kind: changed
29-
description: "Updated SonarQube to 9.6.1"
29+
description: "Updated SonarQube to 9.7.0"
30+
- kind: fixed
31+
description: "Fix the right-dash curly brace issue with the additional network policy parameter"
32+
- kind: added
33+
description: "Allow `tests.image` to be configured and update README accordingly"
34+
- kind: added
35+
description: "Allow `tests.initContainers.image` to be configured and update README accordingly"
36+
- kind: changed
37+
description: "Use the networkPolicy.prometheusNamespace value for the network policy namespace selector"
38+
- kind: changed
39+
description: "Uncomment default value in values.yaml for backwards compatibility"
40+
- kind: added
41+
description: "Add support for monitoringPasscode passed as a secret and removal of livenessprobe httpheader defined in clear text"
42+
- kind: changed
43+
description: "Bump apiVersion to v2"
44+
- kind: changed
45+
description: "Set the number of allowed replicas to 0 and 1"
46+
- kind: added
47+
description: "Add documentation for ingress tls"
48+
- kind: added
49+
description: "Add documentation for sonarProperties and sonarSecretProperties"
50+
- kind: added
51+
description: "Add the possibility of using a secret for customizing the admin password"
3052
artifacthub.io/containsSecurityUpdates: "false"
3153
artifacthub.io/images: |
3254
- name: sonarqube
33-
image: sonarqube:9.6.1-community
55+
image: sonarqube:9.7.0-community
3456
dependencies:
3557
- name: postgresql
3658
version: 10.15.0

charts/sonarqube/values.yaml

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

2828
image:
2929
repository: sonarqube
30-
tag: 9.6.1-{{ .Values.edition }}
30+
tag: 9.7.0-{{ .Values.edition }}
3131
pullPolicy: IfNotPresent
3232
# If using a private repository, the imagePullSecrets to use
3333
# pullSecrets:

0 commit comments

Comments
 (0)