diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-06-04 18:20:43 -0500 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2018-06-05 09:44:06 -0500 |
commit | 432aa3165b571a6cf05af98284a11bb353e43a82 (patch) | |
tree | 7cb8f0252da8321fe1a461dc4faee1bcd4e99a00 /kubernetes/policy | |
parent | e3e120109318c0f5c773dd5c6259284a0b2364fe (diff) |
increase initial liveness/readiness periods
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>
Diffstat (limited to 'kubernetes/policy')
-rw-r--r-- | kubernetes/policy/charts/drools/values.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/policy/charts/drools/values.yaml b/kubernetes/policy/charts/drools/values.yaml index 5a8e936253..b469ce703f 100644 --- a/kubernetes/policy/charts/drools/values.yaml +++ b/kubernetes/policy/charts/drools/values.yaml @@ -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 |