From 6f396eb70b196b452caf6e9c21e00f2ce0dc0d2b Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Thu, 7 Jun 2018 04:43:32 -0700 Subject: Increase SO DB probe initial delays SO healthcheck still fails on TLAB due to so db taking too long to initialize. Increase liveliness and readiness probe initial delays to 450. Change-Id: Ib765937dfd31944c8958e1736b5d579fffbb427d Issue-ID: OOM-1127 Signed-off-by: Gary Wu --- kubernetes/so/charts/mariadb/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/so/charts/mariadb/values.yaml b/kubernetes/so/charts/mariadb/values.yaml index 6ea438649b..a46b31a44e 100644 --- a/kubernetes/so/charts/mariadb/values.yaml +++ b/kubernetes/so/charts/mariadb/values.yaml @@ -46,14 +46,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 -- cgit 1.2.3-korg