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/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
* Upgrade SonarQube Community build to 26.2.0.119303
* Support annotations in HTTPRoute

## [2026.1.0]
* Upgrade SonarQube Server to 2026.1.0
Expand Down
4 changes: 4 additions & 0 deletions charts/sonarqube/templates/http-route.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ metadata:
{{- with .Values.httproute.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
annotations:
{{- with .Values.httproute.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
parentRefs:
- name: {{ .Values.httproute.gateway }}
Expand Down
5 changes: 3 additions & 2 deletions charts/sonarqube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ httproute:
# gatewayNamespace: my-gateway-namespace # optional
# labels:
# somelabel: somevalue
# annotations:
# someannotation: somevalue
# hostnames:
# - sonarqube.your-org.com
# The rules are optional, by default we will create one with the SonarWebContext prefix and the SonarQube service values
Expand Down Expand Up @@ -507,8 +509,7 @@ persistence:
# type: DirectoryOrCreate

# In case you want to specify different resources for emptyDir than {}
emptyDir:
{}
emptyDir: {}
# Example of resouces that might be used:
# medium: Memory
# sizeLimit: 16Mi
Expand Down