Skip to content

Commit 1da2423

Browse files
REL-3799 Release SonarQube Server 2025.3.1
1 parent 7f0d6bd commit 1da2423

File tree

77 files changed

+1751
-1757
lines changed

Some content is hidden

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

77 files changed

+1751
-1757
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.3.0
10+
GCLOUD_TAG: 2025.3.1
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]

.cirrus/tasks_sonarqube.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SKIP_IF_NOT_SONARQUBE: &SKIP_IF_NOT_SONARQUBE
33

44
sonarqube_chart_static_compatibility_test_task:
55
<<: *CHART_STATIC_COMPATIBILITY_TEST_TEMPLATE
6-
<<: *SKIP_IF_NOT_SONARQUBE
6+
# <<: *SKIP_IF_NOT_SONARQUBE
77
script:
88
- ./.cirrus/build_chart_dependencies.sh charts/sonarqube
99
- ./.cirrus/unit_helm_compatibility_test.sh sonarqube
@@ -18,7 +18,7 @@ sonarqube_chart_static_compatibility_test_task:
1818

1919
chart_testing_on_kind_sonarqube_task:
2020
<<: *CHART_TESTING_ON_KIND_TEMPLATE
21-
<<: *SKIP_IF_NOT_SONARQUBE
21+
# <<: *SKIP_IF_NOT_SONARQUBE
2222
script:
2323
- ct lint --config ct-sonarqube-test.yaml
2424
- ct install --namespace test --config ct-sonarqube-test.yaml --debug
@@ -27,7 +27,7 @@ chart_testing_on_kind_sonarqube_task:
2727

2828
sonarqube_chart_packaging_task:
2929
<<: *CHART_PACKAGING_TASK_TEMPLATE
30-
<<: *SKIP_IF_NOT_SONARQUBE
30+
# <<: *SKIP_IF_NOT_SONARQUBE
3131
script:
3232
- source cirrus-env BUILD
3333
- ./.cirrus/package.sh sonarqube
@@ -38,7 +38,7 @@ sonarqube_chart_packaging_task:
3838

3939
sonarqube_push_to_repox_task:
4040
<<: *PUSH_TO_REPOX_TASK_TEMPLATE
41-
<<: *SKIP_IF_NOT_SONARQUBE
41+
# <<: *SKIP_IF_NOT_SONARQUBE
4242
script:
4343
- source cirrus-env ""
4444
- ./.cirrus/upload_chart.sh sonarqube

.cirrus/tasks_sonarqube_dce.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SKIP_IF_NOT_SONARQUBE_DCE: &SKIP_IF_NOT_SONARQUBE_DCE
33

44
sonarqube_dce_chart_static_compatibility_test_task:
55
<<: *CHART_STATIC_COMPATIBILITY_TEST_TEMPLATE
6-
<<: *SKIP_IF_NOT_SONARQUBE_DCE
6+
# <<: *SKIP_IF_NOT_SONARQUBE_DCE
77
script:
88
- ./.cirrus/build_chart_dependencies.sh charts/sonarqube-dce
99
- ./.cirrus/unit_helm_compatibility_test.sh sonarqube-dce
@@ -18,7 +18,7 @@ sonarqube_dce_chart_static_compatibility_test_task:
1818

1919
chart_testing_on_kind_sonarqube_dce_task:
2020
<<: *CHART_TESTING_ON_KIND_TEMPLATE
21-
<<: *SKIP_IF_NOT_SONARQUBE_DCE
21+
# <<: *SKIP_IF_NOT_SONARQUBE_DCE
2222
script:
2323
- ct lint --config ct-sonarqube-dce-test.yaml
2424
- ct install --namespace test --config ct-sonarqube-dce-test.yaml --debug
@@ -27,7 +27,7 @@ chart_testing_on_kind_sonarqube_dce_task:
2727

2828
sonarqube_dce_chart_packaging_task:
2929
<<: *CHART_PACKAGING_TASK_TEMPLATE
30-
<<: *SKIP_IF_NOT_SONARQUBE_DCE
30+
# <<: *SKIP_IF_NOT_SONARQUBE_DCE
3131
environment_cache:
3232
folder: ${CIRRUS_WORKING_DIR}/*.tgz*
3333
fingerprint_script: echo "${CIRRUS_BUILD_ID}-sonarqube-dce"
@@ -41,7 +41,7 @@ sonarqube_dce_chart_packaging_task:
4141

4242
sonarqube_dce_push_to_repox_task:
4343
<<: *PUSH_TO_REPOX_TASK_TEMPLATE
44-
<<: *SKIP_IF_NOT_SONARQUBE_DCE
44+
# <<: *SKIP_IF_NOT_SONARQUBE_DCE
4545
environment_cache:
4646
folder: ${CIRRUS_WORKING_DIR}/*.tgz*
4747
fingerprint_script: echo "${CIRRUS_BUILD_ID}-sonarqube-dce"

.cirrus/tasks_templates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ chart_testing_on_openshift: &CHART_TESTING_ON_OPENSHIFT_TEMPLATE
8383

8484
chart_testing_on_kind: &CHART_TESTING_ON_KIND_TEMPLATE
8585
<<: *ONLY_ON_NON_RELEASE_DRAFT_TEMPLATE
86-
skip: "!changesInclude('charts/**/*', '.cirrus/*') && $CIRRUS_CRON != $NIGHTLY_CRON"
86+
# skip: "!changesInclude('charts/**/*', '.cirrus/*') && $CIRRUS_CRON != $NIGHTLY_CRON"
8787
timeout_in: 1h
8888
ec2_instance:
8989
<<: *VM_TEMPLATE

charts/sonarqube-dce/CHANGELOG.md

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

4+
## [2025.3.1]
5+
* Update Chart's version to 2025.3.1
6+
* Upgrade SonarQube Server to 2025.3.1
7+
48
## [2025.3.0]
59
* Update Chart's version to 2025.3.0
610
* Normalizes the extension for all templates

charts/sonarqube-dce/Chart.yaml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
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
5-
version: 2025.3.0
6-
appVersion: 2025.3.0
5+
version: 2025.3.1
6+
appVersion: 2025.3.1
77
keywords:
88
- coverage
99
- security
@@ -26,15 +26,9 @@ maintainers:
2626
annotations:
2727
artifacthub.io/changes: |
2828
- kind: changed
29-
description: "Update Chart's version to 2025.3.0"
29+
description: "Update Chart's version to 2025.3.1"
3030
- kind: changed
31-
description: "Normalizes the extension for all templates"
32-
- kind: changed
33-
description: "Remove example about non-system sonar.properties"
34-
- kind: fixed
35-
description: "Fix change-admin-password hook when using special characters"
36-
- kind: changed
37-
description: "Upgrade SonarQube Server to 2025.3.0"
31+
description: "Upgrade SonarQube Server to 2025.3.1"
3832
artifacthub.io/links: |
3933
- name: support
4034
url: https://community.sonarsource.com/
@@ -43,9 +37,9 @@ annotations:
4337
artifacthub.io/containsSecurityUpdates: "false"
4438
artifacthub.io/images: |
4539
- name: sonarqube-app
46-
image: sonarqube:2025.3.0-datacenter-app
40+
image: sonarqube:2025.3.1-datacenter-app
4741
- name: sonarqube-search
48-
image: sonarqube:2025.3.0-datacenter-search
42+
image: sonarqube:2025.3.1-datacenter-search
4943
charts.openshift.io/name: sonarqube-dce
5044
dependencies:
5145
- 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.3.0`
17+
Compatible SonarQube Version: `2025.3.1`
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.3.0-datacenter-search` |
296+
| `searchNodes.image.tag` | search image tag | `2025.3.1-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.3.0-datacenter-app` |
353+
| `applicationNodes.image.tag` | app image tag | `2025.3.1-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/ci/cirrus-values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ searchNodes:
55
replicaCount: 1
66
image:
77
repository: "sonarsource/sonarqube"
8-
tag: "2025.3.0-datacenter-search"
8+
tag: "2025.3.1-master-datacenter-search"
99
pullSecrets:
1010
- name: pullsecret
1111

@@ -14,7 +14,7 @@ ApplicationNodes:
1414
jwtSecret: "mnGBJtmwRbIREqy3vSw6Cinoi2WEom9JH+iw/tXOJX4="
1515
image:
1616
repository: "sonarsource/sonarqube"
17-
tag: "2025.3.0-datacenter-app"
17+
tag: "2025.3.1-master-datacenter-app"
1818
pullSecrets:
1919
- name: pullsecret
2020

charts/sonarqube-dce/openshift-verifier/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ searchNodes:
1313
replicaCount: 1
1414
image:
1515
repository: "sonarsource/sonarqube"
16-
tag: "2025.3.0-datacenter-search"
16+
tag: "2025.3.1-datacenter-search"
1717
pullSecrets:
1818
- name: pullsecret
1919

@@ -22,7 +22,7 @@ ApplicationNodes:
2222
jwtSecret: "dZ0EB0KxnF++nr5+4vfTCaun/eWbv6gOoXodiAMqcFo="
2323
image:
2424
repository: "sonarsource/sonarqube"
25-
tag: "2025.3.0-datacenter-app"
25+
tag: "2025.3.1-datacenter-app"
2626
pullSecrets:
2727
- name: pullsecret
2828

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.3.0-datacenter-search
8+
tag: 2025.3.1-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.3.0-datacenter-app
156+
tag: 2025.3.1-datacenter-app
157157
pullPolicy: IfNotPresent
158158
# If using a private repository, the imagePullSecrets to use
159159
# pullSecrets:

0 commit comments

Comments
 (0)