Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
67087b1e70
commit
32405f77e7
|
@ -2,6 +2,15 @@
|
|||
|
||||
|
||||
|
||||
## [authentik-3.0.2](https://github.com/truecharts/charts/compare/authentik-3.0.1...authentik-3.0.2) (2022-08-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- only set ints when are defined ([#3432](https://github.com/truecharts/charts/issues/3432))
|
||||
|
||||
|
||||
|
||||
|
||||
## [authentik-3.0.1](https://github.com/truecharts/charts/compare/authentik-3.0.0...authentik-3.0.1) (2022-08-10)
|
||||
|
||||
### Fix
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
|
||||
|
||||
## [authentik-2.0.27](https://github.com/truecharts/apps/compare/authentik-2.0.26...authentik-2.0.27) (2022-07-23)
|
||||
|
||||
### Chore
|
||||
|
||||
- Auto-update chart README [skip ci]
|
||||
- update helm general non-major helm releases ([#3280](https://github.com/truecharts/apps/issues/3280))
|
||||
|
||||
|
||||
|
|
@ -9,4 +9,4 @@ dependencies:
|
|||
repository: https://charts.truecharts.org
|
||||
version: 3.0.50
|
||||
digest: sha256:81d2872e36dada3a38b120e1b05921a620e693837327731b46507e53a2b9d761
|
||||
generated: "2022-08-10T07:35:06.851352219Z"
|
||||
generated: "2022-08-10T18:59:24.002971149Z"
|
|
@ -27,7 +27,7 @@ sources:
|
|||
- https://github.com/truecharts/charts/tree/master/charts/incubator/authentik
|
||||
- https://github.com/goauthentik/authentik
|
||||
- https://goauthentik.io/docs/
|
||||
version: 3.0.1
|
||||
version: 3.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- authentication
|
|
@ -1,6 +1,6 @@
|
|||
# authentik
|
||||
|
||||
![Version: 3.0.1](https://img.shields.io/badge/Version-3.0.1-informational?style=flat-square) ![AppVersion: 2022.7.3](https://img.shields.io/badge/AppVersion-2022.7.3-informational?style=flat-square)
|
||||
![Version: 3.0.2](https://img.shields.io/badge/Version-3.0.2-informational?style=flat-square) ![AppVersion: 2022.7.3](https://img.shields.io/badge/AppVersion-2022.7.3-informational?style=flat-square)
|
||||
|
||||
authentik is an open-source Identity Provider focused on flexibility and versatility.
|
||||
|
|
@ -22,10 +22,14 @@ data:
|
|||
AUTHENTIK_POSTGRESQL__HOST: {{ printf "%v-%v" .Release.Name "postgresql" }}
|
||||
AUTHENTIK_POSTGRESQL__PORT: "5432"
|
||||
{{/* Mail */}}
|
||||
AUTHENTIK_EMAIL__PORT: {{ .Values.authentik.mail.port | quote }}
|
||||
{{- with .Values.authentik.mail.port }}
|
||||
AUTHENTIK_EMAIL__PORT: {{ . | quote }}
|
||||
{{- end }}
|
||||
AUTHENTIK_EMAIL__USE_TLS: {{ .Values.authentik.mail.tls | quote }}
|
||||
AUTHENTIK_EMAIL__USE_SSL: {{ .Values.authentik.mail.ssl | quote }}
|
||||
AUTHENTIK_EMAIL__TIMEOUT: {{ .Values.authentik.mail.timeout | quote }}
|
||||
{{- with .Values.authentik.mail.timeout }}
|
||||
AUTHENTIK_EMAIL__TIMEOUT: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{/* Logging */}}
|
||||
{{- with .Values.authentik.logging.log_level }}
|
||||
AUTHENTIK_LOG_LEVEL: {{ . }}
|
Loading…
Reference in New Issue