diff --git a/stable/sonarqube/README.md b/stable/sonarqube/README.md index ce345ee74882..36ca30c4dc96 100644 --- a/stable/sonarqube/README.md +++ b/stable/sonarqube/README.md @@ -43,7 +43,7 @@ The following table lists the configurable parameters of the Sonarqube chart and | `image.tag` | `sonarqube` image tag. | 6.5 | | `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `image.pullSecret` | imagePullSecret to use for private repository | | -| `command` | command to run in the container | `nil` (need to be set prior to 6.7.6, and 7.4) | +| `command` | command to run in the container | `nil` (need to be set prior to 6.7.6, and 7.4). From chart version 0.12.0 see `plugins.install` for more info. | | `securityContext.fsGroup` | Group applied to mounted directories/files| `999` | | `ingress.enabled` | Flag for enabling ingress | false | | `service.type` | Kubernetes service type | `LoadBalancer` | @@ -77,7 +77,7 @@ The following table lists the configurable parameters of the Sonarqube chart and | `nodeSelector` | Node labels for pod assignment | `{}` | | `hostAliases` | Aliases for IPs in /etc/hosts | `[]` | | `tolerations` | List of node taints to tolerate | `[]` | -| `plugins.install` | List of plugins to install | `[]` | +| `plugins.install` | List of plugins to install. **NOTE**: if you have set this, starting from chart version 0.12.0 you will need to uncomment the command in values file. | `[]` | | `plugins.resources` | Plugin Pod resource requests & limits | `{}` | You can also configure values for the PostgreSQL / MySQL database via the Postgresql [README.md](https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md) / MySQL [README.md](https://github.com/kubernetes/charts/blob/master/stable/mysql/README.md) diff --git a/stable/sonarqube/values.yaml b/stable/sonarqube/values.yaml index 8f797090216d..c851bf5663b2 100755 --- a/stable/sonarqube/values.yaml +++ b/stable/sonarqube/values.yaml @@ -19,6 +19,10 @@ image: # " # ] +# Starting from chart 0.12.0 if you want to install custom plugins ie: plugins.install is set, you need to , uncomment the following lines. +# command: +# - /usr/local/copy_plugins.sh + # Set security context for sonarqube pod securityContext: fsGroup: 999