Skip to content

Commit

Permalink
fix(authentik): rollingUpdate maxUnavailable, probes
Browse files Browse the repository at this point in the history
  • Loading branch information
JJGadgets committed Nov 30, 2024
1 parent 92aa9ea commit 6de7ee3
Showing 1 changed file with 24 additions and 15 deletions.
39 changes: 24 additions & 15 deletions kube/deploy/apps/authentik/app/hr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,17 @@ spec:
limits:
cpu: "1000m"
memory: "2Gi"
#probes:
# liveness:
# enabled: true
# readiness:
# enabled: true
probes:
liveness:
enabled: true
readiness:
enabled: true
worker:
type: deployment
replicas: 3
strategy: RollingUpdate
rollingUpdate:
unavailable: "90%"
pod:
labels:
db.home.arpa/pg: pg-authentik
Expand Down Expand Up @@ -147,6 +150,9 @@ spec:
ldap:
type: deployment
replicas: 2
strategy: RollingUpdate
rollingUpdate:
unavailable: "90%"
pod:
labels:
authentik.home.arpa/https: allow
Expand Down Expand Up @@ -177,14 +183,17 @@ spec:
limits:
cpu: "1000m"
memory: "512Mi"
#probes:
# liveness:
# enabled: true
# readiness:
# enabled: true
probes:
liveness:
enabled: true
readiness:
enabled: true
radius:
type: deployment
replicas: 2
strategy: RollingUpdate
rollingUpdate:
unavailable: "90%"
pod:
labels:
authentik.home.arpa/https: allow
Expand Down Expand Up @@ -215,11 +224,11 @@ spec:
limits:
cpu: "1000m"
memory: "512Mi"
#probes:
# liveness:
# enabled: true
# readiness:
# enabled: true
probes:
liveness:
enabled: true
readiness:
enabled: true
redis:
type: deployment
replicas: 1
Expand Down

0 comments on commit 6de7ee3

Please sign in to comment.