Compare commits
2 commits
0d38a4d87c
...
cd412df37c
Author | SHA1 | Date | |
---|---|---|---|
|
cd412df37c | ||
077a2a37ea |
8 changed files with 22 additions and 7 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: authentik-application
|
||||
description: "A Chart to deploy a secret for the authentik blueprint-sidecar."
|
||||
type: application
|
||||
version: "0.4.7"
|
||||
version: "0.4.8"
|
||||
maintainers:
|
||||
- name: WrenIX
|
||||
url: https://wrenix.eu
|
||||
|
|
|
@ -7,7 +7,7 @@ description: "A Chart to deploy a secret for the authentik blueprint-sidecar."
|
|||
|
||||
# authentik-application
|
||||
|
||||
 
|
||||
 
|
||||
|
||||
A Chart to deploy a secret for the authentik blueprint-sidecar.
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
blueprint:
|
||||
provider:
|
||||
oidc:
|
||||
redirectURL: "https://url"
|
|
@ -2,6 +2,6 @@ blueprint:
|
|||
provider:
|
||||
oidc:
|
||||
redirectURL:
|
||||
- matching_mode: "regex"
|
||||
url: "https://regex.url"
|
||||
- "https://url"
|
||||
- matching_mode: "regex"
|
||||
url: "https://regex.url"
|
7
authentik-application/ci/ct-oidc-redirect-values.yaml
Normal file
7
authentik-application/ci/ct-oidc-redirect-values.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
blueprint:
|
||||
provider:
|
||||
oidc:
|
||||
redirectURL:
|
||||
- matching_mode: "regex"
|
||||
url: "https://regex.url"
|
||||
- "https://url"
|
|
@ -25,7 +25,11 @@ stringData:
|
|||
redirectURL: {{ .redirectURL | quote }}
|
||||
{{- else }}
|
||||
{{- $url := .redirectURL | first}}
|
||||
redirectURL: {{ ternary $url (get $url "url") (kindIs "string" .redirectURL) | quote }}
|
||||
{{- if (kindIs "string" $url) }}
|
||||
redirectURL: {{ $url | quote }}
|
||||
{{- else }}
|
||||
redirectURL: {{ get $url "url" | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
{{- with .tokenDuration }}
|
||||
|
|
|
@ -70,7 +70,7 @@ wellknown:
|
|||
pullPolicy: IfNotPresent
|
||||
# -- image tag
|
||||
# @section -- well known
|
||||
tag: "1.27.5"
|
||||
tag: "1.28.0"
|
||||
|
||||
# -- replicas
|
||||
# @section -- well known
|
||||
|
|
|
@ -615,7 +615,7 @@ wellknown:
|
|||
image:
|
||||
registry: docker.io
|
||||
repository: library/nginx
|
||||
tag: 1.27.5
|
||||
tag: 1.28.0
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
replicaCount: 1
|
||||
|
|
Loading…
Add table
Reference in a new issue