add ingress for authentik outpost
All checks were successful
ci/woodpecker/push/dashboard Pipeline was successful
All checks were successful
ci/woodpecker/push/dashboard Pipeline was successful
This commit is contained in:
parent
4bf5c5b9dd
commit
afc55a389d
1 changed files with 24 additions and 0 deletions
|
@ -28,6 +28,30 @@ spec:
|
||||||
app.kubernetes.io/instance: yolokube-proxy
|
app.kubernetes.io/instance: yolokube-proxy
|
||||||
app.kubernetes.io/name: authentik-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
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
|
|
Loading…
Reference in a new issue