From bec985e272daa2e0bd6c4697ba0dbc175eb74174 Mon Sep 17 00:00:00 2001 From: jessebot Date: Thu, 23 Jan 2025 10:58:08 +0100 Subject: [PATCH] change liveness and readiness probes for ci tests --- charts/pixelfed/test-values/postgresql-plain.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/charts/pixelfed/test-values/postgresql-plain.yaml b/charts/pixelfed/test-values/postgresql-plain.yaml index 4d6790a..861b9ea 100644 --- a/charts/pixelfed/test-values/postgresql-plain.yaml +++ b/charts/pixelfed/test-values/postgresql-plain.yaml @@ -29,11 +29,21 @@ postgresql: database: pixelfed livenessProbe: + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + successThreshold: 1 httpGet: path: /api/service/health-check port: http readinessProbe: + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + successThreshold: 1 httpGet: path: /api/service/health-check port: http