diff --git a/stable/sonarqube/Chart.yaml b/stable/sonarqube/Chart.yaml index 1c51a2d88e..ee1bd7a20b 100644 --- a/stable/sonarqube/Chart.yaml +++ b/stable/sonarqube/Chart.yaml @@ -1,6 +1,6 @@ name: sonarqube description: Sonarqube is an open sourced code quality scanning tool -version: 0.3.4 +version: 0.3.5 appVersion: 6.5 keywords: - coverage diff --git a/stable/sonarqube/README.md b/stable/sonarqube/README.md index 0920aa2809..f557678d55 100644 --- a/stable/sonarqube/README.md +++ b/stable/sonarqube/README.md @@ -39,14 +39,15 @@ The following table lists the configurable parameters of the Sonarqube chart and | Parameter | Description | Default | | ------------------------------------------ | ---------------------------------- | -------------------------------------------| -| `imageTag` | `sonarqube` image tag. | 6.5 | -| `imagePullPolicy` | Image pull policy | `IfNotPresent` | +| `image.tag` | `sonarqube` image tag. | 6.5 | +| `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `ingress.enabled` | Flag for enabling ingress | false | | `service.type` | Kubernetes service type | `LoadBalancer` | | `persistence.enabled` | Flag for enabling persistent storage| false | | `persistence.storageClass` | Storage class to be used | "-" | | `persistence.accessMode` | Volumes access mode to be set | `ReadWriteOnce` | -| `persistence.size` | Size of the volume | `10Gi` | +| `persistence.size` | Size of the volume | `10Gi` | +| `sonarProperties` | Custom `sonar.properties` file | None | | `postgresql.postgresUser` | Postgresql database user | `sonarUser` | | `postgresql.postgresPassword` | Postgresql database password | `sonarPass` | | `postgresql.postgresDatabase` | Postgresql database name | `sonarDB` | diff --git a/stable/sonarqube/values.yaml b/stable/sonarqube/values.yaml index 08b596b4f8..6bc4fe6a04 100644 --- a/stable/sonarqube/values.yaml +++ b/stable/sonarqube/values.yaml @@ -67,6 +67,13 @@ persistence: plugins: install: [] +# A custom sonar.properties file can be provided using a multiline YAML string. +# For example: +# sonarProperties: | +# sonar.forceAuthentication=true +# sonar.security.realm=LDAP +# ldap.url=ldaps://organization.com + ## Configuration values for the postgresql dependency ## ref: https://github.com/kubernetes/charts/blob/master/stable/postgressql/README.md ##