extend period of readiness probe 53/86153/1
authorTaka Cho <takamune.cho@att.com>
Wed, 24 Apr 2019 13:59:09 +0000 (09:59 -0400)
committerTaka Cho <takamune.cho@att.com>
Wed, 24 Apr 2019 14:00:34 +0000 (10:00 -0400)
changed to:
initialDelaySeconds: 300
periodSeconds: 60

Change-Id: Ic13238e886a8d01a93e2d4f4c7d6bc8f91b5cd09
Issue-ID: APPC-1581
Signed-off-by: Taka Cho <takamune.cho@att.com>
kubernetes/appc/values.yaml

index f3d20bc..e09607e 100644 (file)
@@ -103,15 +103,15 @@ affinity: {}
 
 # probe configuration parameters
 liveness:
-  initialDelaySeconds: 10
-  periodSeconds: 10
+  initialDelaySeconds: 300
+  periodSeconds: 60
   # necessary to disable liveness probe when setting breakpoints
   # in debugger so K8s doesn't restart unresponsive container
   enabled: true
 
 readiness:
-  initialDelaySeconds: 10
-  periodSeconds: 10
+  initialDelaySeconds: 300
+  periodSeconds: 60
 
 service:
   type: NodePort