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
2 changes: 1 addition & 1 deletion charts/weblate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ appVersion: 2026.8.1.0
description: Weblate is a free web-based translation management system.
name: weblate
type: application
version: 0.5.33
version: 0.5.34
home: https://weblate.org/
icon: https://s.weblate.org/cdn/weblate.svg
maintainers:
Expand Down
3 changes: 2 additions & 1 deletion charts/weblate/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# weblate

![Version: 0.5.33](https://img.shields.io/badge/Version-0.5.33-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2026.8.1.0](https://img.shields.io/badge/AppVersion-2026.8.1.0-informational?style=flat-square)
![Version: 0.5.34](https://img.shields.io/badge/Version-0.5.34-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2026.8.1.0](https://img.shields.io/badge/AppVersion-2026.8.1.0-informational?style=flat-square)

Weblate is a free web-based translation management system.

Expand Down Expand Up @@ -66,6 +66,7 @@ $ helm install my-release weblate/weblate
| gatewayApi.gateway.listeners | object | `{}` | Gateway listeners configuration |
| gatewayApi.httpRoute.annotations | object | `{}` | HTTPRoute annotations |
| gatewayApi.httpRoute.create | bool | `false` | Create an HTTPRoute resource |
| gatewayApi.httpRoute.filters | list | `[]` | Filters applied to the default generated rule. Ignored when custom rules are specified |
| gatewayApi.httpRoute.hostnames | list | `[]` | Hostnames the HTTPRoute should match |
| gatewayApi.httpRoute.labels | object | `{}` | Additional HTTPRoute labels |
| gatewayApi.httpRoute.parentRefs | list | `[]` | Parent references for the HTTPRoute. If empty and gateway.create is true, defaults to the created Gateway |
Expand Down
4 changes: 4 additions & 0 deletions charts/weblate/templates/httproute.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,9 @@ spec:
timeouts:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.gatewayApi.httpRoute.filters }}
filters:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/weblate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ gatewayApi:
rules: []
# gatewayApi.httpRoute.timeouts -- Timeouts applied to the default generated rule. Ignored when custom rules are specified
timeouts: {}
# gatewayApi.httpRoute.filters -- Filters applied to the default generated rule. Ignored when custom rules are specified
filters: []

tlsRoute:
# gatewayApi.tlsRoute.create -- Create a TLSRoute resource
Expand Down
Loading