Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Update docs for more clarification on install plugins from chart version 0.12.0 #10508

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stable/sonarqube/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions stable/sonarqube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down