home-server/applications/40-authentik/authentik.yaml

59 lines
1.3 KiB
YAML
Raw Normal View History

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: authentik
namespace: argocd
spec:
project: default
source:
2025-08-17 13:44:49 +00:00
repoURL: https://charts.goauthentik.io
2025-08-17 13:42:44 +00:00
chart: "authentik"
2025-08-17 13:44:03 +00:00
targetRevision: 2025.6.4
2025-08-17 13:45:57 +00:00
type: helm
helm:
2025-08-17 14:26:41 +00:00
parameters:
2025-08-17 14:30:42 +00:00
- name: "postgresql.password"
2025-08-17 14:26:41 +00:00
valueFrom:
secretKeyRef:
name: authentik-secrets
key: postgresql-password
2025-08-17 14:30:42 +00:00
- name: "redis.password"
2025-08-17 14:26:41 +00:00
valueFrom:
secretKeyRef:
name: authentik-secrets
key: redis-password
- name: "authentik.secret_key"
valueFrom:
secretKeyRef:
name: authentik-secrets
key: secret-key
2025-08-17 15:14:56 +00:00
values: |
2025-08-17 15:14:56 +00:00
global:
envFrom:
- secretRef:
name: authentik-env
redis:
enabled: false
2025-08-17 14:30:42 +00:00
postgresql:
enabled: false
authentik:
ingress:
enabled: true
hosts:
- host: authentik.hxme.net
paths:
- path: /
pathType: Prefix
destination:
server: https://kubernetes.default.svc
namespace: home-server
syncPolicy:
automated:
selfHeal: true
prune: true
syncOptions:
- CreateNamespace=true