authentik: fix worker readiness probe (worker has no HTTP listener)
This commit is contained in:
@@ -23,6 +23,27 @@ worker:
|
||||
volumeMounts:
|
||||
- name: dshm
|
||||
mountPath: /dev/shm
|
||||
livenessProbe:
|
||||
exec:
|
||||
command: ["/bin/sh", "-c", "kill -0 1"]
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
failureThreshold: 3
|
||||
timeoutSeconds: 3
|
||||
readinessProbe:
|
||||
exec:
|
||||
command: ["/bin/sh", "-c", "kill -0 1"]
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
failureThreshold: 3
|
||||
timeoutSeconds: 3
|
||||
startupProbe:
|
||||
exec:
|
||||
command: ["/bin/sh", "-c", "kill -0 1"]
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
failureThreshold: 60
|
||||
timeoutSeconds: 3
|
||||
server:
|
||||
envFrom:
|
||||
- secretRef:
|
||||
|
||||
Reference in New Issue
Block a user