diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-17 11:57:51 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-05-17 11:57:51 -0700 |
commit | d3316b2132de71fa5be3b74e8534f0e97038a711 (patch) | |
tree | 68f78dbc80d286f601462fc7b067c35e65c05a52 | |
parent | 1126b3284a20c8b017b85ff504624fe9c20b0522 (diff) |
Increase portal-db initial liveness probe time
The most recent TLAB OOM Portal deployment failed
due to the portal-db initialization being terminated
at the 5 minutes mark.
Bumping the probe initial delays even higher.
Change-Id: I6904fe7c4dd894725b7febcceab07a80e348a69e
Issue-ID: PORTAL-283
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
-rw-r--r-- | kubernetes/portal/charts/portal-mariadb/values.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/portal/charts/portal-mariadb/values.yaml b/kubernetes/portal/charts/portal-mariadb/values.yaml index ae5849eb27..fc4836bf07 100644 --- a/kubernetes/portal/charts/portal-mariadb/values.yaml +++ b/kubernetes/portal/charts/portal-mariadb/values.yaml @@ -77,14 +77,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 |