From 003aef75d274a985fe5f195d1345473d86d79383 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Tue, 18 Aug 2020 09:18:51 -0700 Subject: [PATCH] For liveness and readiness, succeed quickly and fail slowly - No reason to wait a long time before the first check, since our app should start quickly --- deploy/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml index d0a3cac0..48c9b8d8 100644 --- a/deploy/deployment.yaml +++ b/deploy/deployment.yaml @@ -93,7 +93,7 @@ spec: path: /healthz port: 443 scheme: HTTPS - initialDelaySeconds: 20 + initialDelaySeconds: 2 timeoutSeconds: 15 periodSeconds: 10 failureThreshold: 5 @@ -102,7 +102,7 @@ spec: path: /healthz port: 443 scheme: HTTPS - initialDelaySeconds: 20 + initialDelaySeconds: 2 timeoutSeconds: 3 periodSeconds: 10 failureThreshold: 3