Compare commits

...

2 commits

8 changed files with 22 additions and 7 deletions

View file

@ -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

View file

@ -7,7 +7,7 @@ description: "A Chart to deploy a secret for the authentik blueprint-sidecar."
# authentik-application # authentik-application
![Version: 0.4.7](https://img.shields.io/badge/Version-0.4.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![Version: 0.4.8](https://img.shields.io/badge/Version-0.4.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
A Chart to deploy a secret for the authentik blueprint-sidecar. A Chart to deploy a secret for the authentik blueprint-sidecar.

View file

@ -0,0 +1,4 @@
blueprint:
provider:
oidc:
redirectURL: "https://url"

View file

@ -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"

View file

@ -0,0 +1,7 @@
blueprint:
provider:
oidc:
redirectURL:
- matching_mode: "regex"
url: "https://regex.url"
- "https://url"

View file

@ -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 }}

View file

@ -70,7 +70,7 @@ wellknown:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# -- image tag # -- image tag
# @section -- well known # @section -- well known
tag: "1.27.5" tag: "1.28.0"
# -- replicas # -- replicas
# @section -- well known # @section -- well known

View file

@ -615,7 +615,7 @@ wellknown:
image: image:
registry: docker.io registry: docker.io
repository: library/nginx repository: library/nginx
tag: 1.27.5 tag: 1.28.0
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
replicaCount: 1 replicaCount: 1