diff --git a/charts/sonarqube-dce/CHANGELOG.md b/charts/sonarqube-dce/CHANGELOG.md index 8002e314d..c6658f105 100644 --- a/charts/sonarqube-dce/CHANGELOG.md +++ b/charts/sonarqube-dce/CHANGELOG.md @@ -3,6 +3,7 @@ All changes to this chart will be documented in this file. ## [7.0.2] * Fix missing `bitnami/minideb-extras` image during helm tests +* Update SonarQube to 9.9.2 ## [7.0.1] * Update SonarQube to 9.9.1 diff --git a/charts/sonarqube-dce/Chart.yaml b/charts/sonarqube-dce/Chart.yaml index 9bcb9eee5..da9c4c567 100644 --- a/charts/sonarqube-dce/Chart.yaml +++ b/charts/sonarqube-dce/Chart.yaml @@ -3,7 +3,7 @@ name: sonarqube-dce 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. type: application version: 7.0.2 -appVersion: 9.9.1 +appVersion: 9.9.2 keywords: - coverage - security @@ -26,6 +26,8 @@ annotations: artifacthub.io/changes: | - kind: fixed description: "Fix missing `bitnami/minideb-extras` image during helm tests" + - kind: changed + description: "Update SonarQube to 9.9.2" artifacthub.io/links: | - name: support url: https://community.sonarsource.com/ @@ -34,9 +36,9 @@ annotations: artifacthub.io/containsSecurityUpdates: "false" artifacthub.io/images: | - name: sonarqube-app - image: sonarqube:9.9.1-datacenter-app + image: sonarqube:9.9.2-datacenter-app - name: sonarqube-search - image: sonarqube:9.9.1-datacenter-search + image: sonarqube:9.9.2-datacenter-search dependencies: - name: postgresql version: 10.15.0 diff --git a/charts/sonarqube-dce/README.md b/charts/sonarqube-dce/README.md index 56c50e372..e78c895c5 100644 --- a/charts/sonarqube-dce/README.md +++ b/charts/sonarqube-dce/README.md @@ -14,7 +14,7 @@ Please note that this chart does NOT support SonarQube Community, Developer, and ## Compatibility -Compatible SonarQube Version: `9.9.1` +Compatible SonarQube Version: `9.9.2` Supported Kubernetes Versions: From `1.23` to `1.26` @@ -133,7 +133,7 @@ The following table lists the configurable parameters of the SonarQube chart and | Parameter | Description | Default | | --------- | ----------- | ------- | | `searchNodes.image.repository` | search image repository | `sonarqube` | -| `searchNodes.image.tag` | search image tag | `9.9.1-datacenter-search` | +| `searchNodes.image.tag` | search image tag | `9.9.2-datacenter-search` | | `searchNodes.image.pullPolicy` | search image pull policy | `IfNotPresent` | | `searchNodes.image.pullSecret` | (DEPRECATED) search imagePullSecret to use for private repository | `nil` | | `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 | Parameter | Description | Default | | --------- | ----------- | ------- | | `ApplicationNodes.image.repository` | app image repository | `sonarqube` | -| `ApplicationNodes.image.tag` | app image tag | `9.9.1-datacenter-app` | +| `ApplicationNodes.image.tag` | app image tag | `9.9.2-datacenter-app` | | `ApplicationNodes.image.pullPolicy` | app image pull policy | `IfNotPresent` | | `ApplicationNodes.image.pullSecret` | (DEPRECATED) app imagePullSecret to use for private repository | `nil` | | `ApplicationNodes.image.pullSecrets` | app imagePullSecrets to use for private repository | `nil` | diff --git a/charts/sonarqube-dce/values.yaml b/charts/sonarqube-dce/values.yaml index c4ff3860e..34f2faeb6 100644 --- a/charts/sonarqube-dce/values.yaml +++ b/charts/sonarqube-dce/values.yaml @@ -5,7 +5,7 @@ searchNodes: image: repository: sonarqube - tag: 9.9.1-datacenter-search + tag: 9.9.2-datacenter-search pullPolicy: IfNotPresent # If using a private repository, the imagePullSecrets to use # pullSecrets: @@ -113,7 +113,7 @@ searchNodes: ApplicationNodes: image: repository: sonarqube - tag: 9.9.1-datacenter-app + tag: 9.9.2-datacenter-app pullPolicy: IfNotPresent # If using a private repository, the imagePullSecrets to use # pullSecrets: diff --git a/charts/sonarqube/CHANGELOG.md b/charts/sonarqube/CHANGELOG.md index 405da72ea..0f77be6d0 100644 --- a/charts/sonarqube/CHANGELOG.md +++ b/charts/sonarqube/CHANGELOG.md @@ -3,6 +3,8 @@ All changes to this chart will be documented in this file. ## [8.0.2] * Fix missing `bitnami/minideb-extras` image during helm tests +* Update SonarQube to 9.9.2 + ## [8.0.1] * Update SonarQube to 9.9.1 diff --git a/charts/sonarqube/Chart.yaml b/charts/sonarqube/Chart.yaml index 0228bbee3..317ba8cd7 100644 --- a/charts/sonarqube/Chart.yaml +++ b/charts/sonarqube/Chart.yaml @@ -3,7 +3,7 @@ name: sonarqube 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. type: application version: 8.0.2 -appVersion: 9.9.1 +appVersion: 9.9.2 keywords: - coverage - security @@ -31,10 +31,12 @@ annotations: artifacthub.io/changes: | - kind: fixed description: "Fix missing `bitnami/minideb-extras` image during helm tests" + - kind: changed + description: "Update SonarQube to 9.9.2" artifacthub.io/containsSecurityUpdates: "false" artifacthub.io/images: | - name: sonarqube - image: sonarqube:9.9.1-community + image: sonarqube:9.9.2-community dependencies: - name: postgresql version: 10.15.0 diff --git a/charts/sonarqube/README.md b/charts/sonarqube/README.md index d1b0c4558..a853d3cb1 100644 --- a/charts/sonarqube/README.md +++ b/charts/sonarqube/README.md @@ -14,7 +14,7 @@ Please note that this chart only supports SonarQube Community, Developer, and En ## Compatibility -Compatible SonarQube Version: `9.9.1` +Compatible SonarQube Version: `9.9.2` Supported Kubernetes Versions: From `1.23` to `1.26` @@ -169,13 +169,13 @@ The following table lists the configurable parameters of the SonarQube chart and ### Image -| Parameter | Description | Default | -| --------- | ----------- | ------- | -| `image.repository` | image repository | `sonarqube` | -| `image.tag` | `sonarqube` image tag. | `9.9.1-{{ .Values.edition }}` | -| `image.pullPolicy` | Image pull policy | `IfNotPresent` | -| `image.pullSecret` | (DEPRECATED) imagePullSecret to use for private repository | `None` | -| `image.pullSecrets` | imagePullSecrets to use for private repository | `None` | +| Parameter | Description | Default | +| --------- | ----------- |-------------------------------| +| `image.repository` | image repository | `sonarqube` | +| `image.tag` | `sonarqube` image tag. | `9.9.2-{{ .Values.edition }}` | +| `image.pullPolicy` | Image pull policy | `IfNotPresent` | +| `image.pullSecret` | (DEPRECATED) imagePullSecret to use for private repository | `None` | +| `image.pullSecrets` | imagePullSecrets to use for private repository | `None` | ### Security diff --git a/charts/sonarqube/values.yaml b/charts/sonarqube/values.yaml index 2c018b244..f36fa0c67 100644 --- a/charts/sonarqube/values.yaml +++ b/charts/sonarqube/values.yaml @@ -27,7 +27,7 @@ edition: "community" image: repository: sonarqube - tag: 9.9.1-{{ .Values.edition }} + tag: 9.9.2-{{ .Values.edition }} pullPolicy: IfNotPresent # If using a private repository, the imagePullSecrets to use # pullSecrets: