Files
homelab/authentik/templates/ingress.yaml
DeveloperDurp 7e0121d058 Update 9 files
- /authentik/templates/ingress.yaml
- /durpapi/templates/external-dns.yaml
- /heimdall/templates/ingress.yaml
- /internalproxy/templates/kasm-ingress.yaml
- /internalproxy/templates/nexus.yaml
- /internalproxy/templates/registry.yaml
- /kube-prometheus-stack/templates/ingress.yaml
- /uptimekuma/templates/ingress.yaml
- /whoogle/templates/ingress.yaml
2023-06-09 23:51:15 +00:00

42 lines
781 B
YAML

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: authentik-ingress
spec:
entryPoints:
- websecure
routes:
- match: Host(`authentik.durp.info`) && PathPrefix(`/`)
kind: Rule
services:
- name: authentik
port: 80
tls:
secretName: authentik-tls
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: authentik-tls
spec:
secretName: authentik-tls
issuerRef:
name: letsencrypt-production
kind: ClusterIssuer
commonName: "authentik.durp.info"
dnsNames:
- "authentik.durp.info"
---
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