Skip to content

Commit

Permalink
fix(traefik v3): Invalid regex for default storage proxy Traefik rule
Browse files Browse the repository at this point in the history
The regular expression in the hostname rule was using incompatible
Traefik v2 regex.

Changelog: Title
Signed-off-by: Alf-Rune Siqveland <[email protected]>
  • Loading branch information
alfrunes committed Aug 21, 2024
1 parent 630184b commit 52db4f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions mender/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Mender Helm chart

## Version 5.10.1
* Fix invalid regexp in default storage proxy rule.

## Version 5.10.0
* Change `generate_delta_worker` to StatefulSet and add `persistence` values
* The new `persistence` values specifies the parameters of the PVC template of
Expand Down
2 changes: 1 addition & 1 deletion mender/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "3.7.7"
description: Mender is a robust and secure way to update all your software and deploy your IoT devices at scale with support for customization
name: mender
version: 5.10.0
version: 5.10.1
keywords:
- mender
- iot
Expand Down
2 changes: 1 addition & 1 deletion mender/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ Define mender.storageProxyUrl
Storage Proxy Rule
*/}}
{{- define "mender.storageProxyRule" -}}
{{- default "HostRegexp(`{domain:^artifacts.*$}`)" .Values.api_gateway.storage_proxy.customRule | quote }}
{{- default "HostRegexp(`^artifacts.*$`)" .Values.api_gateway.storage_proxy.customRule | quote }}
{{- end -}}

{{/*
Expand Down

0 comments on commit 52db4f1

Please sign in to comment.