Strip this out to confirm it's not stuck in an odd loop with old data

This commit is contained in:
j 2025-07-03 13:10:00 +10:00
parent a73c604452
commit a894746503
2 changed files with 58 additions and 1 deletions

View file

@ -0,0 +1,58 @@
---
apiVersion: v1
kind: Namespace
metadata:
name: authentik
---
apiVersion: source.toolkit.fluxcd.io/v1
kind: HelmRepository
metadata:
name: authentik
namespace: flux-system
spec:
url: https://charts.goauthentik.io/
interval: 1h
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: authentik
namespace: authentik
spec:
interval: 30m
chart:
spec:
chart: authentik
version: 2024.4.2
sourceRef:
kind: HelmRepository
name: authentik
namespace: flux-system
install:
createNamespace: true
upgrade:
disableWait: false
timeout: 10m
values:
# Optional example values below
server:
ingress:
enabled: true
ingressClassName: traefik
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
external-dns.alpha.kubernetes.io/hostname: auth.hxme.net
hosts:
- host: auth.hxme.net
paths:
- path: /
pathType: Prefix
tls:
- secretName: authentik-tls
hosts:
- authentik.example.com
postgresql:
enabled: true # Set to false if using external DB
redis:
enabled: true # Set to false if using external Redis

View file

@ -12,4 +12,3 @@ resources:
- dns/externaldns.yaml
- files/nextcloud.yaml
- files/syncthing.yaml
- ssl/certmanager.yaml