Skip to content

Commit

Permalink
Merge pull request #338 from alfrunes/storage-proxy-fix
Browse files Browse the repository at this point in the history
fix(traefik v3): Invalid host regex for default storage proxy URL
  • Loading branch information
alfrunes authored Aug 21, 2024
2 parents 630184b + 52db4f1 commit bced4ee
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 bced4ee

Please sign in to comment.