From 28b8874a4941e32f76b51e54d6629a7de14eae4c Mon Sep 17 00:00:00 2001 From: prettysunflower Date: Wed, 4 Jun 2025 11:30:37 +0200 Subject: [PATCH] apps(pocketid): Added liveness probe --- apps/pocketid/deployment.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/apps/pocketid/deployment.yaml b/apps/pocketid/deployment.yaml index d682245..ac0e946 100644 --- a/apps/pocketid/deployment.yaml +++ b/apps/pocketid/deployment.yaml @@ -39,4 +39,17 @@ spec: drop: - ALL seccompProfile: - type: RuntimeDefault \ No newline at end of file + type: RuntimeDefault + livenessProbe: + httpGet: + path: /healthz + port: 1411 + initialDelaySeconds: 10 + failureThreshold: 3 + periodSeconds: 90 + startupProbe: + httpGet: + path: /healthz + port: 1411 + failureThreshold: 30 + periodSeconds: 10 \ No newline at end of file