|
|
@@ -11,6 +11,46 @@ spec:
|
|
11
|
11
|
name: {{ .Values.spec.destination.name }}
|
|
12
|
12
|
project: {{ .Values.spec.project }}
|
|
13
|
13
|
source:
|
|
14
|
|
- path: {{ .Values.spec.source.path }}/authentik
|
|
15
|
|
- repoURL: {{ .Values.spec.source.repoURL }}
|
|
16
|
|
- targetRevision: {{ .Values.spec.source.targetRevision }}
|
|
|
14
|
+ chart: goauthentik/authentik
|
|
|
15
|
+ repoURL: https://charts.goauthentik.io
|
|
|
16
|
+ targetRevision: 5.2.1
|
|
|
17
|
+ values: |
|
|
|
18
|
+ authentik:
|
|
|
19
|
+ secret_key: "qlfgmSJ8GT/EoE3JsphrM81KzyYqoDYif7u59m/sVL4EQ6MO"
|
|
|
20
|
+ # This sends anonymous usage-data, stack traces on errors and
|
|
|
21
|
+ # performance data to sentry.beryju.org, and is fully opt-in
|
|
|
22
|
+ error_reporting:
|
|
|
23
|
+ enabled: true
|
|
|
24
|
+ postgresql:
|
|
|
25
|
+ password: "ThisIsNotASecurePasswordEither"
|
|
|
26
|
+
|
|
|
27
|
+ email:
|
|
|
28
|
+ # -- SMTP Server emails are sent from, fully optional
|
|
|
29
|
+ host: "mail.your-server.de"
|
|
|
30
|
+ port: 587
|
|
|
31
|
+ # -- SMTP credentials, when left empty, not authentication will be done
|
|
|
32
|
+ username: "authentik@kaisers.info"
|
|
|
33
|
+ # -- SMTP credentials, when left empty, not authentication will be done
|
|
|
34
|
+ password: "6qL3XdwQUw2UJ75U"
|
|
|
35
|
+ # -- Enable either use_tls or use_ssl, they can't be enabled at the same time.
|
|
|
36
|
+ use_tls: true
|
|
|
37
|
+ # -- Enable either use_tls or use_ssl, they can't be enabled at the same time.
|
|
|
38
|
+ use_ssl: false
|
|
|
39
|
+ # -- Connection timeout
|
|
|
40
|
+ timeout: 30
|
|
|
41
|
+ # -- Email from address, can either be in the format "foo@bar.baz" or "authentik <foo@bar.baz>"
|
|
|
42
|
+ from: "authentik <authentik@kaisers.info>"
|
|
|
43
|
+
|
|
|
44
|
+ ingress:
|
|
|
45
|
+ enabled: true
|
|
|
46
|
+ hosts:
|
|
|
47
|
+ - host: authentik.kaisers.info
|
|
|
48
|
+ paths:
|
|
|
49
|
+ - path: "/"
|
|
|
50
|
+ pathType: Prefix
|
|
|
51
|
+
|
|
|
52
|
+ postgresql:
|
|
|
53
|
+ enabled: true
|
|
|
54
|
+ postgresqlPassword: "ThisIsNotASecurePasswordEither"
|
|
|
55
|
+ redis:
|
|
|
56
|
+ enabled: true
|