add ingress for authentik outpost
All checks were successful
ci/woodpecker/push/dashboard Pipeline was successful

This commit is contained in:
Aaron Riedel 2024-09-29 13:54:21 +02:00
parent 4bf5c5b9dd
commit afc55a389d
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -28,6 +28,30 @@ spec:
app.kubernetes.io/instance: yolokube-proxy
app.kubernetes.io/name: authentik-proxy
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/tls-acme: "true"
name: authentik-ingress
namespace: authentik
spec:
rules:
- host: "sso.services.yolokube.de"
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: authentik-outpost
port:
number: 9000
tls:
- hosts:
- sso.services.yolokube.de
secretName: authentik-tls-key
---
apiVersion: apps/v1
kind: Deployment
metadata: