Compare commits
2 commits
4a6379079b
...
0b888c6303
Author | SHA1 | Date | |
---|---|---|---|
|
0b888c6303 | ||
111083334b |
6 changed files with 28 additions and 4 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.6"
|
version: "0.4.7"
|
||||||
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.
|
||||||
|
|
||||||
|
|
7
authentik-application/ci/ct-redirect-values.yaml
Normal file
7
authentik-application/ci/ct-redirect-values.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
blueprint:
|
||||||
|
provider:
|
||||||
|
oidc:
|
||||||
|
redirectURL:
|
||||||
|
- matching_mode: "regex"
|
||||||
|
url: "https://regex.url"
|
||||||
|
- "https://url"
|
|
@ -28,8 +28,20 @@
|
||||||
client_id: {{ $clientID | quote }}
|
client_id: {{ $clientID | quote }}
|
||||||
client_secret: {{ $clientSecret | quote }}
|
client_secret: {{ $clientSecret | quote }}
|
||||||
redirect_uris:
|
redirect_uris:
|
||||||
|
{{- if (kindIs "string" .redirectURL) }}
|
||||||
- matching_mode: "strict"
|
- matching_mode: "strict"
|
||||||
url: {{ .redirectURL | quote }}
|
url: {{ .redirectURL | quote }}
|
||||||
|
{{- else }}
|
||||||
|
{{- range $url := .redirectURL }}
|
||||||
|
{{- if (kindIs "string" $url) }}
|
||||||
|
- matching_mode: "strict"
|
||||||
|
url: {{ $url | quote }}
|
||||||
|
{{- else }}
|
||||||
|
{{- toYaml (list $url) | nindent 6 }}
|
||||||
|
{{- end }}{{/* one of is a string -> else is a object */}}
|
||||||
|
{{- end }}{{/* one of range */}}
|
||||||
|
{{- end }}{{/* redirect is a string -> else is a slice */}}
|
||||||
|
|
||||||
{{- with .tokenDuration }}
|
{{- with .tokenDuration }}
|
||||||
access_token_validity: {{ . | quote }}
|
access_token_validity: {{ . | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -21,7 +21,12 @@ stringData:
|
||||||
clientID: {{ $clientID | quote }}
|
clientID: {{ $clientID | quote }}
|
||||||
clientSecret: {{ $clientSecret | quote }}
|
clientSecret: {{ $clientSecret | quote }}
|
||||||
|
|
||||||
redirectURL: {{ .redirectURL }}
|
{{- if (kindIs "string" .redirectURL) }}
|
||||||
|
redirectURL: {{ .redirectURL | quote }}
|
||||||
|
{{- else }}
|
||||||
|
{{- $url := .redirectURL | first}}
|
||||||
|
redirectURL: {{ ternary $url (get $url "url") (kindIs "string" .redirectURL) | quote }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
{{- with .tokenDuration }}
|
{{- with .tokenDuration }}
|
||||||
tokenDuration: {{ . | quote }}
|
tokenDuration: {{ . | quote }}
|
||||||
|
|
|
@ -5,7 +5,7 @@ icon: https://raw.githubusercontent.com/gramps-project/Gramps.js/main/images/ico
|
||||||
type: application
|
type: application
|
||||||
version: "0.2.13"
|
version: "0.2.13"
|
||||||
# renovate: image=ghcr.io/gramps-project/grampsweb
|
# renovate: image=ghcr.io/gramps-project/grampsweb
|
||||||
appVersion: "25.4.0"
|
appVersion: "25.4.1"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: WrenIX
|
- name: WrenIX
|
||||||
url: https://wrenix.eu
|
url: https://wrenix.eu
|
||||||
|
|
Loading…
Add table
Reference in a new issue