41 lines
864 B
YAML
41 lines
864 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: authentik
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://charts.goauthentik.io
|
|
chart: "authentik"
|
|
targetRevision: 2025.6.4
|
|
type: helm
|
|
helm:
|
|
values: |
|
|
global:
|
|
envFrom:
|
|
- secretRef:
|
|
name: authentik-env
|
|
redis:
|
|
enabled: true
|
|
|
|
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
|