diff options
author | Taka Cho <takamune.cho@att.com> | 2019-04-24 09:59:09 -0400 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2019-04-24 10:00:34 -0400 |
commit | faf292a2bf4add38127fffd494de20f04d4ff2f7 (patch) | |
tree | 486ce79b325c8a2c079015016f76fea955655c0f | |
parent | 960c8f474ac54dabc43fb0864240db2de71b08bb (diff) |
extend period of readiness probe
changed to:
initialDelaySeconds: 300
periodSeconds: 60
Change-Id: Ic13238e886a8d01a93e2d4f4c7d6bc8f91b5cd09
Issue-ID: APPC-1581
Signed-off-by: Taka Cho <takamune.cho@att.com>
-rw-r--r-- | kubernetes/appc/values.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kubernetes/appc/values.yaml b/kubernetes/appc/values.yaml index f3d20bc3a4..e09607e408 100644 --- a/kubernetes/appc/values.yaml +++ b/kubernetes/appc/values.yaml @@ -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 |