From 1f46b42338d435706e6e5927d001b9f34730c982 Mon Sep 17 00:00:00 2001 From: Eloy Maillo <14107036+herodes1991@users.noreply.github.com> Date: Thu, 3 Oct 2024 10:31:00 +0200 Subject: [PATCH] Add missing key in liveness probe We detected that the failure_threshold was not documented in the docs, so we are adding it to the v3_spec docs. https://github.com/fiaas/fiaas-deploy-daemon/blob/e414289c5639c162043a7d89ec50cb5a8a0c66eb/fiaas_deploy_daemon/specs/v3/defaults.yml#L43C5-L43C25 --- docs/v3_spec.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/v3_spec.md b/docs/v3_spec.md index c587d77b..8af4c587 100644 --- a/docs/v3_spec.md +++ b/docs/v3_spec.md @@ -313,6 +313,7 @@ healthchecks: initial_delay_seconds: 10 period_seconds: 10 success_threshold: 1 # For liveness, 1 is the only valid value. For readiness, it can be higher + failure_threshold: 3 timeout_seconds: 1 ```