Skip to content

Commit a2708f4

Browse files
REL-3083 Update SonarQube LTA to 9.9.5
1 parent 7e7b5d8 commit a2708f4

File tree

9 files changed

+30
-24
lines changed

9 files changed

+30
-24
lines changed

.cirrus/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ RUN set -eux; \
9494

9595
COPY --from=tools /usr/local/bin/cirrus-env /usr/local/bin/cirrus-env
9696
COPY --from=tools /usr/local/bin/gh /usr/local/bin/gh
97-
COPY --from=tools /home/sonarsource/.m2/settings-public.xml /root/.m2/settings-public.xml
97+
COPY --from=tools /home/sonarsource/.m2/settings-public-auth.xml /root/.m2/settings-public.xml

charts/sonarqube-dce/CHANGELOG.md

+3
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+
## [7.0.5]
5+
* Update SonarQube to 9.9.5
6+
47
## [7.0.4]
58
* Update SonarQube to 9.9.4
69

charts/sonarqube-dce/Chart.yaml

+5-5
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: 7.0.4
6-
appVersion: 9.9.4
5+
version: 7.0.5
6+
appVersion: 9.9.5
77
keywords:
88
- coverage
99
- security
@@ -25,7 +25,7 @@ maintainers:
2525
annotations:
2626
artifacthub.io/changes: |
2727
- kind: changed
28-
description: "Update SonarQube to 9.9.4"
28+
description: "Update SonarQube to 9.9.5"
2929
artifacthub.io/links: |
3030
- name: support
3131
url: https://community.sonarsource.com/
@@ -34,9 +34,9 @@ annotations:
3434
artifacthub.io/containsSecurityUpdates: "false"
3535
artifacthub.io/images: |
3636
- name: sonarqube-app
37-
image: sonarqube:9.9.4-datacenter-app
37+
image: sonarqube:9.9.5-datacenter-app
3838
- name: sonarqube-search
39-
image: sonarqube:9.9.4-datacenter-search
39+
image: sonarqube:9.9.5-datacenter-search
4040
dependencies:
4141
- name: postgresql
4242
version: 10.15.0

charts/sonarqube-dce/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ This helm chart bootstraps a SonarQube Data Center Edition cluster with a Postgr
88

99
The latest version of the chart installs the latest SonarQube version.
1010

11-
To install the version of the chart for SonarQube 9.9 LTS, please read the section [below](#installing-the-lts-chart). Deciding between LTS and Latest? [This may help](https://www.sonarsource.com/products/sonarqube/downloads/lts/)
11+
To install the version of the chart for SonarQube 9.9 LTA, please read the section [below](#installing-the-lts-chart). Deciding between LTA and Latest? [This may help](https://www.sonarsource.com/products/sonarqube/downloads/lts/)
1212

1313
Please note that this chart does NOT support SonarQube Community, Developer, and Enterprise Editions.
1414

1515
## Compatibility
1616

17-
Compatible SonarQube Version: `9.9.4`
17+
Compatible SonarQube Version: `9.9.5`
1818

1919
Supported Kubernetes Versions: From `1.23` to `1.26`
2020

@@ -41,9 +41,9 @@ The above command deploys SonarQube on the Kubernetes cluster in the default con
4141

4242
The default login is admin/admin.
4343

44-
## Installing the SonarQube 9.9 LTS chart
44+
## Installing the SonarQube 9.9 LTA chart
4545

46-
The version of the chart for the SonarQube 9.9 LTS is being distributed as the `7.x.x` version of this chart.
46+
The version of the chart for the SonarQube 9.9 LTA is being distributed as the `7.x.x` version of this chart.
4747

4848
In order to use it, please set the version constraint `~7`, which is equivalent to `>=7.0.0 && <= 8.0.0`. That version parameter **must** be used in every helm related command including `install`, `upgrade`, `template`, and `diff` (don't treat this as an exhaustive list).
4949

@@ -133,7 +133,7 @@ The following table lists the configurable parameters of the SonarQube chart and
133133
| Parameter | Description | Default |
134134
| --------- | ----------- |---------------------------|
135135
| `searchNodes.image.repository` | search image repository | `sonarqube` |
136-
| `searchNodes.image.tag` | search image tag | `9.9.4-datacenter-search` |
136+
| `searchNodes.image.tag` | search image tag | `9.9.5-datacenter-search` |
137137
| `searchNodes.image.pullPolicy` | search image pull policy | `IfNotPresent` |
138138
| `searchNodes.image.pullSecret` | (DEPRECATED) search imagePullSecret to use for private repository | `nil` |
139139
| `searchNodes.image.pullSecrets` | search imagePullSecrets to use for private repository | `nil` |
@@ -176,7 +176,7 @@ The following table lists the configurable parameters of the SonarQube chart and
176176
| Parameter | Description | Default |
177177
| --------- | ----------- |------------------------|
178178
| `ApplicationNodes.image.repository` | app image repository | `sonarqube` |
179-
| `ApplicationNodes.image.tag` | app image tag | `9.9.4-datacenter-app` |
179+
| `ApplicationNodes.image.tag` | app image tag | `9.9.5-datacenter-app` |
180180
| `ApplicationNodes.image.pullPolicy` | app image pull policy | `IfNotPresent` |
181181
| `ApplicationNodes.image.pullSecret` | (DEPRECATED) app imagePullSecret to use for private repository | `nil` |
182182
| `ApplicationNodes.image.pullSecrets` | app imagePullSecrets to use for private repository | `nil` |

charts/sonarqube-dce/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
searchNodes:
66
image:
77
repository: sonarqube
8-
tag: 9.9.4-datacenter-search
8+
tag: 9.9.5-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.9.4-datacenter-app
116+
tag: 9.9.5-datacenter-app
117117
pullPolicy: IfNotPresent
118118
# If using a private repository, the imagePullSecrets to use
119119
# pullSecrets:

charts/sonarqube/CHANGELOG.md

+3
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+
## [8.0.5]
5+
* Update SonarQube to 9.9.5
6+
47
## [8.0.4]
58
* Update SonarQube to 9.9.4
69

charts/sonarqube/Chart.yaml

+4-4
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: 8.0.4
6-
appVersion: 9.9.4
5+
version: 8.0.5
6+
appVersion: 9.9.5
77
keywords:
88
- coverage
99
- security
@@ -30,11 +30,11 @@ annotations:
3030
url: https://github.com/SonarSource/helm-chart-sonarqube/tree/master/charts/sonarqube
3131
artifacthub.io/changes: |
3232
- kind: changed
33-
description: "Update SonarQube to 9.9.4"
33+
description: "Update SonarQube to 9.9.5"
3434
artifacthub.io/containsSecurityUpdates: "false"
3535
artifacthub.io/images: |
3636
- name: sonarqube
37-
image: sonarqube:9.9.4-community
37+
image: sonarqube:9.9.5-community
3838
dependencies:
3939
- name: postgresql
4040
version: 10.15.0

charts/sonarqube/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ This chart bootstraps an instance of the latest SonarQube version with a Postgre
88

99
The latest version of the chart installs the latest SonarQube version.
1010

11-
To install the version of the chart for SonarQube 9.9 LTS, please read the section [below](#installing-the-sonarqube-99-lts-chart). Deciding between LTS and Latest? [This may help](https://www.sonarsource.com/products/sonarqube/downloads/lts/)
11+
To install the version of the chart for SonarQube 9.9 LTA, please read the section [below](#installing-the-sonarqube-99-lts-chart). Deciding between LTA and Latest? [This may help](https://www.sonarsource.com/products/sonarqube/downloads/lts/)
1212

1313
Please note that this chart only supports SonarQube Community, Developer, and Enterprise editions.
1414

1515
## Compatibility
1616

17-
Compatible SonarQube Version: `9.9.4`
17+
Compatible SonarQube Version: `9.9.5`
1818

1919
Supported Kubernetes Versions: From `1.23` to `1.26`
2020

@@ -33,9 +33,9 @@ The above command deploys SonarQube on the Kubernetes cluster in the default con
3333

3434
The default login is admin/admin.
3535

36-
## Installing the SonarQube 9.9 LTS chart
36+
## Installing the SonarQube 9.9 LTA chart
3737

38-
The version of the chart for the SonarQube 9.9 LTS is being distributed as the `8.x.x` version of this chart.
38+
The version of the chart for the SonarQube 9.9 LTA is being distributed as the `8.x.x` version of this chart.
3939

4040
In order to use it, please set the version constraint `~8`, which is equivalent to `>=8.0.0 && <= 9.0.0`. That version parameter **must** be used in every helm related command including `install`, `upgrade`, `template`, and `diff` (don't treat this as an exhaustive list).
4141

@@ -172,7 +172,7 @@ The following table lists the configurable parameters of the SonarQube chart and
172172
| Parameter | Description | Default |
173173
| --------- | ----------- |-------------------------------|
174174
| `image.repository` | image repository | `sonarqube` |
175-
| `image.tag` | `sonarqube` image tag. | `9.9.4-{{ .Values.edition }}` |
175+
| `image.tag` | `sonarqube` image tag. | `9.9.5-{{ .Values.edition }}` |
176176
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
177177
| `image.pullSecret` | (DEPRECATED) imagePullSecret to use for private repository | `None` |
178178
| `image.pullSecrets` | imagePullSecrets to use for private repository | `None` |

charts/sonarqube/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ edition: "community"
2727

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

0 commit comments

Comments
 (0)