Skip to content

Commit 9742cf1

Browse files
authored
REL-3153 Release SonarQube 10.6.0
1 parent 87e33bf commit 9742cf1

File tree

12 files changed

+24
-18
lines changed

12 files changed

+24
-18
lines changed

.cirrus/tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
DOCKER_GCLOUD_SA_KEY: VAULT[development/team/sonarqube/kv/data/gcp-marketplace-registry-staging data.key]
88
GCLOUD_REGISTRY: gcr.io/sonarqube-marketplace-provider # This is the staging registry
99
GCLOUD_PRODUCT_NAME: sonarqube-dce-staging # This is the staging product name
10-
GCLOUD_TAG: 10.5.0
10+
GCLOUD_TAG: 10.6.0
1111

1212
except_nightly_cron: &EXCEPT_ON_NIGHTLY_CRON
1313
only_if: $CIRRUS_CRON != $NIGHTLY_CRON

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.6.0]
5+
* Upgrade SonarQube to 10.6.0
56
* Update Chart's version to 10.6.0
67
* Fix the env-var templating when sourcing from secrets
78
* Fix the postgresql chart's repository link

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.6.0
6-
appVersion: 10.5.0
6+
appVersion: 10.6.0
77
keywords:
88
- coverage
99
- security
@@ -27,6 +27,8 @@ maintainers:
2727
2828
annotations:
2929
artifacthub.io/changes: |
30+
- kind: changed
31+
description: "Update SonarQube's version to 10.6.0"
3032
- kind: changed
3133
description: "Update Chart's version to 10.6.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.5.0-datacenter-app
54+
image: sonarqube:10.6.0-datacenter-app
5355
- name: sonarqube-search
54-
image: sonarqube:10.5.0-datacenter-search
56+
image: sonarqube:10.6.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.5.0`
17+
Compatible SonarQube Version: `10.6.0`
1818

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

@@ -212,7 +212,7 @@ The following table lists the configurable parameters of the SonarQube chart and
212212
| Parameter | Description | Default |
213213
| --------------------------------------------------------- | ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
214214
| `searchNodes.image.repository` | search image repository | `sonarqube` |
215-
| `searchNodes.image.tag` | search image tag | `10.5.0-datacenter-search` |
215+
| `searchNodes.image.tag` | search image tag | `10.6.0-datacenter-search` |
216216
| `searchNodes.image.pullPolicy` | search image pull policy | `IfNotPresent` |
217217
| `searchNodes.image.pullSecret` | (DEPRECATED) search imagePullSecret to use for private repository | `nil` |
218218
| `searchNodes.image.pullSecrets` | search imagePullSecrets to use for private repository | `nil` |
@@ -268,7 +268,7 @@ The following table lists the configurable parameters of the SonarQube chart and
268268
| Parameter | Description | Default |
269269
| ---------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
270270
| `ApplicationNodes.image.repository` | app image repository | `sonarqube` |
271-
| `ApplicationNodes.image.tag` | app image tag | `10.5.0-datacenter-app` |
271+
| `ApplicationNodes.image.tag` | app image tag | `10.6.0-datacenter-app` |
272272
| `ApplicationNodes.image.pullPolicy` | app image pull policy | `IfNotPresent` |
273273
| `ApplicationNodes.image.pullSecret` | (DEPRECATED) app imagePullSecret to use for private repository | `nil` |
274274
| `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.5.0-datacenter-search
8+
tag: 10.6.0-datacenter-search
99
pullPolicy: IfNotPresent
1010
# If using a private repository, the imagePullSecrets to use
1111
# pullSecrets:
@@ -151,7 +151,7 @@ searchNodes:
151151
ApplicationNodes:
152152
image:
153153
repository: sonarqube
154-
tag: 10.5.0-datacenter-app
154+
tag: 10.6.0-datacenter-app
155155
pullPolicy: IfNotPresent
156156
# If using a private repository, the imagePullSecrets to use
157157
# 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.6.0]
5+
* Update SonarQube to 10.6.0
56
* Update Chart's version to 10.6.0
67
* Fix the env-var templating when sourcing from secrets
78
* Fix the postgresql chart's repository link

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.6.0
6-
appVersion: 10.5.0
6+
appVersion: 10.6.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: "Update SonarQube's version to 10.6.0"
3537
- kind: changed
3638
description: "Update Chart's version to 10.6.0"
3739
- kind: fixed
@@ -45,7 +47,7 @@ annotations:
4547
artifacthub.io/containsSecurityUpdates: "false"
4648
artifacthub.io/images: |
4749
- name: sonarqube
48-
image: sonarqube:10.5.0-community
50+
image: sonarqube:10.6.0-community
4951
dependencies:
5052
- name: postgresql
5153
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.5.0`
17+
Compatible SonarQube Version: `10.6.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.5.0-{{ .Values.edition }}` |
241+
| `image.tag` | `sonarqube` image tag. | `10.6.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.5.0-{{ .Values.edition }}
33+
tag: 10.6.0-{{ .Values.edition }}
3434
pullPolicy: IfNotPresent
3535
# If using a private repository, the imagePullSecrets to use
3636
# pullSecrets:

google-cloud-marketplace-k8s-app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and run this command.
2020
# make sure you are on a staging account
2121
export REGISTRY=gcr.io/$(gcloud config get-value project | tr ':' '/')
2222
export APP_NAME=sonarqube-dce
23-
export TAG=10.5.0
23+
export TAG=10.6.0
2424
export MINOR_VERSION=$(echo $TAG | cut -d. -f1,2)
2525
# Deployer does not care about patch version. see [here](https://github.com/GoogleCloudPlatform/marketplace-k8s-app-tools/blob/master/docs/building-deployer-helm.md#images-in-staging-gcr)
2626
docker build -f google-cloud-marketplace-k8s-app/Dockerfile --build-arg REGISTRY="${REGISTRY}" --build-arg TAG="${TAG}" --tag $REGISTRY/$APP_NAME/deployer:$MINOR_VERSION .

0 commit comments

Comments
 (0)