From d3316b2132de71fa5be3b74e8534f0e97038a711 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Thu, 17 May 2018 11:57:51 -0700 Subject: [PATCH] Increase portal-db initial liveness probe time The most recent TLAB OOM Portal deployment failed due to the portal-db initialization being terminated at the 5 minutes mark. Bumping the probe initial delays even higher. Change-Id: I6904fe7c4dd894725b7febcceab07a80e348a69e Issue-ID: PORTAL-283 Signed-off-by: Gary Wu --- kubernetes/portal/charts/portal-mariadb/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/portal/charts/portal-mariadb/values.yaml b/kubernetes/portal/charts/portal-mariadb/values.yaml index ae5849eb27..fc4836bf07 100644 --- a/kubernetes/portal/charts/portal-mariadb/values.yaml +++ b/kubernetes/portal/charts/portal-mariadb/values.yaml @@ -77,14 +77,14 @@ affinity: {} # probe configuration parameters liveness: - initialDelaySeconds: 300 + initialDelaySeconds: 450 periodSeconds: 10 # necessary to disable liveness probe when setting breakpoints # in debugger so K8s doesn't restart unresponsive container enabled: true readiness: - initialDelaySeconds: 300 + initialDelaySeconds: 450 periodSeconds: 10 ## Persist data to a persitent volume -- 2.16.6