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

Commit

Permalink
[stable/sonarqube] upgrades LTS to latest patch
Browse files Browse the repository at this point in the history
Also updates ingress apiVersion, adding support for later k8s versions.
(Modernizes documentaiton accordingly.)

Signed-off-by: Usman Akeju <akeju00+github@gmail.com>
  • Loading branch information
usmonster committed Jan 2, 2020
1 parent 1208876 commit aa7245b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion REVIEW_GUIDELINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ ingress:

```yaml
{{- if .Values.ingress.enabled -}}
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "myapp.fullname" }}
Expand Down
6 changes: 3 additions & 3 deletions stable/sonarqube/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: sonarqube
description: Sonarqube is an open sourced code quality scanning tool
version: 3.2.7
appVersion: 7.9.1
description: SonarQube is an open sourced code quality scanning tool
version: 3.3.0
appVersion: 7.9.2
keywords:
- coverage
- security
Expand Down
2 changes: 1 addition & 1 deletion stable/sonarqube/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The following table lists the configurable parameters of the Sonarqube chart and
| `replicaCount` | Number of replicas deployed | `1` |
| `deploymentStrategy` | Deployment strategy | `{}` |
| `image.repository` | image repository | `sonarqube` |
| `image.tag` | `sonarqube` image tag. | `7.9.1-community` |
| `image.tag` | `sonarqube` image tag. | `7.9.2-community` |
| `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) |
Expand Down
2 changes: 1 addition & 1 deletion stable/sonarqube/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{- if .Values.ingress.enabled -}}
{{- $serviceName := include "sonarqube.fullname" . -}}
{{- $servicePort := .Values.service.externalPort -}}
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ template "sonarqube.fullname" . }}
Expand Down
2 changes: 1 addition & 1 deletion stable/sonarqube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ deploymentStrategy: {}

image:
repository: sonarqube
tag: 7.9.1-community
tag: 7.9.2-community
# If using a private repository, the name of the imagePullSecret to use
# pullSecret: my-repo-secret

Expand Down

0 comments on commit aa7245b

Please sign in to comment.