Skip to content

Commit 60dbe7e

Browse files
authored
REL-3640 Release SonarQube Server 2025.2.0
1 parent 5b4276b commit 60dbe7e

File tree

70 files changed

+432
-422
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+432
-422
lines changed

.cirrus/tasks_env.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: 2025.1.0
10+
GCLOUD_TAG: 2025.2.0
1111
ROSA_OPENSHIFT_URL: VAULT[development/team/sonarqube/kv/data/rosa-openshift data.url]
1212
ROSA_OPENSHIFT_USER: VAULT[development/team/sonarqube/kv/data/rosa-dev data.username]
1313
ROSA_OPENSHIFT_PASSWORD: VAULT[development/team/sonarqube/kv/data/rosa-dev data.password]

charts/sonarqube-dce/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ All changes to this chart will be documented in this file.
44
## [2025.2.0]
55
* Update Chart's version to 2025.2.0
66
* Update ingress-nginx subchart to 4.12.1
7+
* Upgrade SonarQube Server to 2025.2.0
78

89
## [2025.1.0]
910
* Update Chart's version to 2025.1.0

charts/sonarqube-dce/Chart.yaml

Lines changed: 6 additions & 4 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: 2025.2.0
6-
appVersion: 2025.1.0
6+
appVersion: 2025.2.0
77
keywords:
88
- coverage
99
- security
@@ -28,7 +28,9 @@ annotations:
2828
- kind: changed
2929
description: "Update Chart's version to 2025.2.0"
3030
- kind: changed
31-
description: "Update ingress-nginx subchart to 4.12.0"
31+
description: "Update ingress-nginx subchart to 4.12.1"
32+
- kind: changed
33+
description: "Upgrade SonarQube Server to 2025.2.0"
3234
artifacthub.io/links: |
3335
- name: support
3436
url: https://community.sonarsource.com/
@@ -37,9 +39,9 @@ annotations:
3739
artifacthub.io/containsSecurityUpdates: "false"
3840
artifacthub.io/images: |
3941
- name: sonarqube-app
40-
image: sonarqube:2025.1.0-datacenter-app
42+
image: sonarqube:2025.2.0-datacenter-app
4143
- name: sonarqube-search
42-
image: sonarqube:2025.1.0-datacenter-search
44+
image: sonarqube:2025.2.0-datacenter-search
4345
charts.openshift.io/name: sonarqube-dce
4446
dependencies:
4547
- name: postgresql

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: `2025.1.0`
17+
Compatible SonarQube Version: `2025.2.0`
1818

1919
Supported Kubernetes Versions: From `1.30` to `1.32`
2020
Supported Openshift Versions: From `4.11` to `4.17`
@@ -293,7 +293,7 @@ The following table lists the configurable parameters of the SonarQube chart and
293293
| Parameter | Description | Default |
294294
| --------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------- |
295295
| `searchNodes.image.repository` | search image repository | `sonarqube` |
296-
| `searchNodes.image.tag` | search image tag | `2025.1.0-datacenter-search` |
296+
| `searchNodes.image.tag` | search image tag | `2025.2.0-datacenter-search` |
297297
| `searchNodes.image.pullPolicy` | search image pull policy | `IfNotPresent` |
298298
| `searchNodes.image.pullSecret` | (DEPRECATED) search imagePullSecret to use for private repository | `nil` |
299299
| `searchNodes.image.pullSecrets` | search imagePullSecrets to use for private repository | `nil` |
@@ -350,7 +350,7 @@ The following table lists the configurable parameters of the SonarQube chart and
350350
| Parameter | Description | Default |
351351
| ---------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
352352
| `applicationNodes.image.repository` | app image repository | `sonarqube` |
353-
| `applicationNodes.image.tag` | app image tag | `2025.1.0-datacenter-app` |
353+
| `applicationNodes.image.tag` | app image tag | `2025.2.0-datacenter-app` |
354354
| `applicationNodes.image.pullPolicy` | app image pull policy | `IfNotPresent` |
355355
| `applicationNodes.image.pullSecret` | (DEPRECATED) app imagePullSecret to use for private repository | `nil` |
356356
| `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: 2025.1.0-datacenter-search
8+
tag: 2025.2.0-datacenter-search
99
pullPolicy: IfNotPresent
1010
# If using a private repository, the imagePullSecrets to use
1111
# pullSecrets:
@@ -153,7 +153,7 @@ searchNodes:
153153
applicationNodes:
154154
image:
155155
repository: sonarqube
156-
tag: 2025.1.0-datacenter-app
156+
tag: 2025.2.0-datacenter-app
157157
pullPolicy: IfNotPresent
158158
# If using a private repository, the imagePullSecrets to use
159159
# pullSecrets:

charts/sonarqube/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ All changes to this chart will be documented in this file.
44
## [2025.2.0]
55
* Update Chart's version to 2025.2.0
66
* Update ingress-nginx subchart to 4.12.1
7+
* Upgrade SonarQube Server to 2025.2.0
78

89
## [2025.1.0]
910
* Update Chart's version to 2025.1.0

charts/sonarqube/Chart.yaml

Lines changed: 9 additions & 3 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: 2025.2.0
6-
appVersion: 2025.1.0
6+
appVersion: 2025.2.0
77
keywords:
88
- coverage
99
- security
@@ -33,11 +33,17 @@ annotations:
3333
- kind: changed
3434
description: "Update Chart's version to 2025.2.0"
3535
- kind: changed
36-
description: "Update ingress-nginx subchart to 4.12.0"
36+
description: "Update ingress-nginx subchart to 4.12.1"
37+
- kind: changed
38+
description: "Upgrade SonarQube Server to 2025.2.0"
3739
artifacthub.io/containsSecurityUpdates: "false"
3840
artifacthub.io/images: |
39-
- name: sonarqube
41+
- name: sonarqube-community
4042
image: sonarqube:25.1.0.102122-community
43+
- name: sonarqube-developer
44+
image: sonarqube:2025.2.0-developer
45+
- name: sonarqube-enterprise
46+
image: sonarqube:2025.2.0-enterprise
4147
charts.openshift.io/name: sonarqube
4248
dependencies:
4349
- name: postgresql

charts/sonarqube/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Please note that this chart only supports SonarQube Server Developer and Enterpr
1414

1515
## Compatibility
1616

17-
Compatible SonarQube Server Version: `2025.1.0`
17+
Compatible SonarQube Server Version: `2025.2.0`
1818
Compatible SonarQube Community Build: `25.1.0.102122`
1919

2020
Supported Kubernetes Versions: From `1.30` to `1.32`

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=2025.1.0
23+
export TAG=2025.2.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 .

google-cloud-marketplace-k8s-app/data-test/schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ x-google-marketplace:
77
publishedVersion: "$TAG"
88
publishedVersionMetadata:
99
releaseNote: >-
10-
SonarQube Server 2025.1.x google cloud marketpalce release test schema.
10+
SonarQube Server 2025.2.x google cloud marketpalce release test schema.
1111
images:
1212
'':
1313
properties:

0 commit comments

Comments
 (0)