add ressource limits and livenessProbe to authentik proxy #1015

Merged
aaron merged 1 commit from ar-authentik-outpost into main 2025-05-28 20:53:09 +02:00

View file

@ -63,6 +63,7 @@ metadata:
app.kubernetes.io/managed-by: goauthentik.io
app.kubernetes.io/name: authentik-proxy
spec:
replicas: 2
selector:
matchLabels:
app.kubernetes.io/instance: yolokube-proxy
@ -101,6 +102,19 @@ spec:
- containerPort: 9443
name: https
protocol: TCP
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 150m
memory: 128Mi
livenessProbe:
httpGet:
path: /outpost.goauthentik.io/ping
port: 9300
initialDelaySeconds: 15
periodSeconds: 3
---
apiVersion: traefik.io/v1alpha1
kind: Middleware