Compare commits
2 commits
076998cf2b
...
2e67cb7a16
Author | SHA1 | Date | |
---|---|---|---|
|
2e67cb7a16 | ||
077a2a37ea |
9 changed files with 23 additions and 8 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: authentik-application
|
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.4.7"
|
version: "0.4.8"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: WrenIX
|
- name: WrenIX
|
||||||
url: https://wrenix.eu
|
url: https://wrenix.eu
|
||||||
|
|
|
@ -7,7 +7,7 @@ description: "A Chart to deploy a secret for the authentik blueprint-sidecar."
|
||||||
|
|
||||||
# authentik-application
|
# authentik-application
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A Chart to deploy a secret for the authentik blueprint-sidecar.
|
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:
|
provider:
|
||||||
oidc:
|
oidc:
|
||||||
redirectURL:
|
redirectURL:
|
||||||
- matching_mode: "regex"
|
|
||||||
url: "https://regex.url"
|
|
||||||
- "https://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 }}
|
redirectURL: {{ .redirectURL | quote }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- $url := .redirectURL | first}}
|
{{- $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 }}
|
{{- end }}
|
||||||
|
|
||||||
{{- with .tokenDuration }}
|
{{- with .tokenDuration }}
|
||||||
|
|
|
@ -179,7 +179,7 @@ kubectl:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
repository: bitnami/kubectl
|
repository: bitnami/kubectl
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 1.32.4
|
tag: 1.33.0
|
||||||
|
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
# Specifies whether a service account should be created
|
# Specifies whether a service account should be created
|
||||||
|
|
|
@ -25,7 +25,7 @@ kubectl:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
repository: bitnami/kubectl
|
repository: bitnami/kubectl
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 1.32.4
|
tag: 1.33.0
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
|
|
@ -16,7 +16,7 @@ kubectl:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
repository: bitnami/kubectl
|
repository: bitnami/kubectl
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 1.32.4
|
tag: 1.33.0
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
|
Loading…
Add table
Reference in a new issue