瀏覽代碼

Authentik as app

Simon Kaiser 3 年之前
父節點
當前提交
0ec1610be0
共有 2 個檔案被更改,包括 38 行新增0 行删除
  1. 16
    0
      gitops-kaisers-info/apps/templates/authentik.yaml
  2. 22
    0
      gitops-kaisers-info/authentik/values.yaml

+ 16
- 0
gitops-kaisers-info/apps/templates/authentik.yaml 查看文件

@@ -0,0 +1,16 @@
1
+apiVersion: argoproj.io/v1alpha1
2
+kind: Application
3
+metadata:
4
+  name: authentik
5
+  namespace: authentik
6
+  finalizers:
7
+  - resources-finalizer.argocd.argoproj.io
8
+spec:
9
+  destination:
10
+    namespace: authentik
11
+    name: {{ .Values.spec.destination.name }}
12
+  project: {{ .Values.spec.project }}
13
+  source:
14
+    path: {{ .Values.spec.source.path }}/authentik
15
+    repoURL: {{ .Values.spec.source.repoURL }}
16
+    targetRevision: {{ .Values.spec.source.targetRevision }}

+ 22
- 0
gitops-kaisers-info/authentik/values.yaml 查看文件

@@ -0,0 +1,22 @@
1
+authentik:
2
+  secret_key: "PleaseGenerateA50CharKeyOrSo"
3
+  # This sends anonymous usage-data, stack traces on errors and
4
+  # performance data to sentry.beryju.org, and is fully opt-in
5
+  error_reporting:
6
+    enabled: true
7
+  postgresql:
8
+    password: "ThisIsNotASecurePasswordEither"
9
+
10
+ingress:
11
+  enabled: true
12
+  hosts:
13
+    - host: authentik.kaisers.info
14
+      paths:
15
+        - path: "/"
16
+          pathType: Prefix
17
+
18
+postgresql:
19
+  enabled: true
20
+  postgresqlPassword: "ThisIsNotASecurePasswordEither"
21
+redis:
22
+  enabled: true