increase initial liveness/readiness periods 77/50277/3
authorJorge Hernandez <jh1730@att.com>
Mon, 4 Jun 2018 23:20:43 +0000 (18:20 -0500)
committerJorge Hernandez <jh1730@att.com>
Tue, 5 Jun 2018 14:44:06 +0000 (09:44 -0500)
It has been observed in windriver labs that initialization
times when downloading artifacts from onap nexus
repositories can be fairly long in duration.   When network is slow
readiness/liveness checks kicked in before the container is
fully initialized, therefore restarting the process until
it finds a window of time where initialization completes within
the time window.   This change increments those timers to
allow for complete initialization for slow installations.

Change-Id: I55f4a87e670020b8e6396a6a6a66f88345f300e7
Issue-ID: POLICY-879
Signed-off-by: Jorge Hernandez <jh1730@att.com>
kubernetes/policy/charts/drools/values.yaml

index 5a8e936..b469ce7 100644 (file)
@@ -46,7 +46,7 @@ affinity: {}
 
 # probe configuration parameters
 liveness:
-  initialDelaySeconds: 60
+  initialDelaySeconds: 180
   periodSeconds: 10
   # necessary to disable liveness probe when setting breakpoints
   # in debugger so K8s doesn't restart unresponsive container