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

Commit

Permalink
Merge pull request #335 from js-timbirkett/patch-1
Browse files Browse the repository at this point in the history
fix(Ingress/pathType): default to Prefix
  • Loading branch information
rjkernick authored Mar 8, 2022
2 parents 2bdc3cf + 984ee6b commit ddbe28f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/sonarqube/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: sonarqube
description: SonarQube is an open sourced code quality scanning tool
version: 9.10.1
version: 9.10.2
appVersion: 8.9.7-community
keywords:
- coverage
Expand Down
4 changes: 2 additions & 2 deletions charts/sonarqube/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ spec:
- host: {{ .name }}
http:
paths:
- path: {{ .path}}
- path: {{ .path }}
{{- if $.Capabilities.APIVersions.Has "networking.k8s.io/v1" }}
pathType: {{ .pathType }}
pathType: {{ .pathType | default "Prefix" }}
{{- end }}
backend:
{{- if $.Capabilities.APIVersions.Has "networking.k8s.io/v1" }}
Expand Down

0 comments on commit ddbe28f

Please sign in to comment.