- /authentik/values.yaml - /authentik/templates/ingress.yaml - /whoogle/templates/ingress.yaml
30 lines
571 B
YAML
30 lines
571 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" |