Skip to content

Commit

Permalink
Fix Openshift route name (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesbusy authored Jun 15, 2022
1 parent 6b61fcf commit 4d09adc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions charts/sonarqube/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# SonarQube Chart Changelog
All changes to this chart will be documented in this file.

## [4.0.2]
* Fix issue with Openshift route name to use use fullname instead of name

## [4.0.1]
* Add documentation for ingress annotations

Expand Down
3 changes: 2 additions & 1 deletion charts/sonarqube/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
apiVersion: v1
name: sonarqube
description: SonarQube offers Code Quality and Code Security analysis for up to 27 languages. Find Bugs, Vulnerabilities, Security Hotspots and Code Smells throughout your workflow.
version: 4.0.1
version: 4.0.2
appVersion: 9.5.0

keywords:
- coverage
- security
Expand Down
2 changes: 1 addition & 1 deletion charts/sonarqube/templates/route.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
kind: Route
apiVersion: route.openshift.io/v1
metadata:
name: {{ template "sonarqube.name" . }}
name: {{ template "sonarqube.fullname" . }}
labels:
app: {{ template "sonarqube.name" . }}
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Expand Down

0 comments on commit 4d09adc

Please sign in to comment.