fix(authentik-application): add skipPathRegex and cookieDomain to proxy-provider

This commit is contained in:
WrenIX 2023-09-06 23:10:12 +02:00
parent 6f13fb42bf
commit 7cfa897a87
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 5 additions and 1 deletions

View file

@ -3,4 +3,4 @@ name: authentik-application
description: A Chart to deploy a secret for the authentik blueprint-sidecar
type: application
version: 0.3.1
version: 0.3.2

View file

@ -110,6 +110,8 @@ stringData:
mode: "forward_single"
{{- with .Values.blueprint.provider.proxy }}
external_host: {{ .externalHost | quote }}
skip_path_regex: {{ .skipPathRegex | quote }}
cookie_domain: {{ .cookieDomain | quote }}
{{- end }}{{/* with-proxy */}}
{{- end }}{{/* if-proxy */}}
{{- end }}

View file

@ -27,6 +27,8 @@ blueprint:
# -- used for proxy provider
proxy:
externalHost:
skipPathRegex: ""
cookieDomain: ""
# -- not yet supported
ingress:
enabled: false