fix(authentik-application): add skipPathRegex and cookieDomain to proxy-provider
This commit is contained in:
parent
6f13fb42bf
commit
7cfa897a87
3 changed files with 5 additions and 1 deletions
|
@ -3,4 +3,4 @@ name: authentik-application
|
||||||
description: A Chart to deploy a secret for the authentik blueprint-sidecar
|
description: A Chart to deploy a secret for the authentik blueprint-sidecar
|
||||||
type: application
|
type: application
|
||||||
|
|
||||||
version: 0.3.1
|
version: 0.3.2
|
|
@ -110,6 +110,8 @@ stringData:
|
||||||
mode: "forward_single"
|
mode: "forward_single"
|
||||||
{{- with .Values.blueprint.provider.proxy }}
|
{{- with .Values.blueprint.provider.proxy }}
|
||||||
external_host: {{ .externalHost | quote }}
|
external_host: {{ .externalHost | quote }}
|
||||||
|
skip_path_regex: {{ .skipPathRegex | quote }}
|
||||||
|
cookie_domain: {{ .cookieDomain | quote }}
|
||||||
{{- end }}{{/* with-proxy */}}
|
{{- end }}{{/* with-proxy */}}
|
||||||
{{- end }}{{/* if-proxy */}}
|
{{- end }}{{/* if-proxy */}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -27,6 +27,8 @@ blueprint:
|
||||||
# -- used for proxy provider
|
# -- used for proxy provider
|
||||||
proxy:
|
proxy:
|
||||||
externalHost:
|
externalHost:
|
||||||
|
skipPathRegex: ""
|
||||||
|
cookieDomain: ""
|
||||||
# -- not yet supported
|
# -- not yet supported
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue