This commit is contained in:
2025-05-10 10:41:51 -05:00
parent 263ed8d805
commit 107dd520b3
2 changed files with 81 additions and 59 deletions

View File

@@ -1,20 +1,3 @@
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: auth-ingress
spec:
entryPoints:
- websecure
routes:
- match: Host(`auth.durp.info`) && PathPrefix(`/`)
kind: Rule
services:
- name: ak-outpost-dmz-embedded-outpost
port: 9000
tls:
secretName: authentik-outpost-tls
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
@@ -28,3 +11,42 @@ spec:
dnsNames:
- "authentik.durp.info"
- "authentik.durp.info"
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: authentik-ingress
spec:
entryPoints:
- websecure
routes:
- match: Host(`authentik.durp.info`) && PathPrefix(`/`)
kind: Rule
services:
- name: infra-cluster
port: 443
tls:
secretName: authentik-outpost-tls
---
kind: Service
apiVersion: v1
metadata:
name: authentik-external-dns
annotations:
external-dns.alpha.kubernetes.io/hostname: authentik.durp.info
spec:
type: ExternalName
externalName: durp.info
---
apiVersion: v1
kind: Endpoints
metadata:
name: infra-cluster
subsets:
- addresses:
- ip: 192.168.12.130
ports:
- port: 443