Merge pull request 'feat: add authentik deplozment' (#1) from feat/authentik into main
Reviewed-on: #1
This commit is contained in:
commit
c0e88d39e0
2 changed files with 51 additions and 0 deletions
8
authentik/chart-source.yaml
Normal file
8
authentik/chart-source.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: authentik
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 1m
|
||||
url: https://charts.goauthentik.io/authentik
|
43
authentik/helm-release.yaml
Normal file
43
authentik/helm-release.yaml
Normal file
|
@ -0,0 +1,43 @@
|
|||
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: authentik
|
||||
namespace: default
|
||||
spec:
|
||||
interval: 5m
|
||||
chart:
|
||||
spec:
|
||||
chart: <name|path>
|
||||
version: '4.0.x'
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: authentik
|
||||
namespace: flux-system
|
||||
interval: 1m
|
||||
values:
|
||||
authentik:
|
||||
secret_key: "nPgcX6KnkNUXO6nxYJylIq324gEXlDlWuruetgoj4YQpwKpglu"
|
||||
# This sends anonymous usage-data, stack traces on errors and
|
||||
# performance data to sentry.io, and is fully opt-in
|
||||
error_reporting:
|
||||
enabled: true
|
||||
postgresql:
|
||||
password: "ThisIsNotASecurePassword"
|
||||
|
||||
ingress:
|
||||
# Specify kubernetes ingress controller class name
|
||||
ingressClassName: nginx
|
||||
enabled: true
|
||||
hosts:
|
||||
# Specify external host name
|
||||
# - host: account.n39.eu
|
||||
- host: k3s.n39.eu
|
||||
paths:
|
||||
- path: "/"
|
||||
pathType: Prefix
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
postgresqlPassword: "ThisIsNotASecurePassword"
|
||||
redis:
|
||||
enabled: true
|
Loading…
Reference in a new issue