Skip to content
Open
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
1 change: 1 addition & 0 deletions charts/sonarqube-dce/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All changes to this chart will be documented in this file.
* Upgrade Chart's version to 2026.2.0
* Update ingress-nginx subchart to 4.14.3
* Replace wget with curl in health probes
* Added optional sectionName option to httproute

## [2026.1.0]
* Upgrade SonarQube Server to 2026.1.0
Expand Down
3 changes: 3 additions & 0 deletions charts/sonarqube-dce/templates/http-route.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ spec:
{{- if .Values.httproute.gatewayNamespace }}
namespace: {{ .Values.httproute.gatewayNamespace }}
{{- end }}
{{- if .Values.httproute.gatewaySectionName }}
sectionName: {{ .Values.httproute.gatewaySectionName }}
{{- end }}
hostnames:
{{- with .Values.httproute.hostnames }}
{{- toYaml . | nindent 4 }}
Expand Down
1 change: 1 addition & 0 deletions charts/sonarqube-dce/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ httproute:
enabled: false
# gateway: my-gateway
# gatewayNamespace: my-gateway-namespace # optional
# gatewaySectionName: my-gateway-section # optional
# labels:
# somelabel: somevalue
# hostnames:
Expand Down
1 change: 1 addition & 0 deletions charts/sonarqube/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All changes to this chart will be documented in this file.
* Update ingress-nginx subchart to 4.14.3
* Upgrade SonarQube Community build to 26.3.0.120487
* Replace wget with curl in health probes
* Added optional sectionName option to httproute

## [2026.1.0]
* Upgrade SonarQube Server to 2026.1.0
Expand Down
3 changes: 3 additions & 0 deletions charts/sonarqube/templates/http-route.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ spec:
{{- if .Values.httproute.gatewayNamespace }}
namespace: {{ .Values.httproute.gatewayNamespace }}
{{- end }}
{{- if .Values.httproute.gatewaySectionName }}
sectionName: {{ .Values.httproute.gatewaySectionName }}
{{- end }}
hostnames:
{{- with .Values.httproute.hostnames }}
{{- toYaml . | nindent 4 }}
Expand Down
1 change: 1 addition & 0 deletions charts/sonarqube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ httproute:
enabled: false
# gateway: my-gateway
# gatewayNamespace: my-gateway-namespace # optional
# gatewaySectionName: my-gateway-section # optional
# labels:
# somelabel: somevalue
# hostnames:
Expand Down