diff options
author | Brian Freeman <bf1936@att.com> | 2019-10-02 09:50:19 -0500 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2019-10-02 09:50:30 -0500 |
commit | 6142d94779e6a57e01833bdb1dba14b183f9a806 (patch) | |
tree | dabae04944d26f09dee35e359b597dd0af99069a /kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml | |
parent | 5052c3871190e6ea73c71c69081fcfc38b713ed6 (diff) |
Increase liness/readiness timeout and period
Issue-ID: OOM-2059
Change-Id: I02bbdd5b06e7194434d761bcf1aebbd749c6f1d7
Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml')
-rw-r--r-- | kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml b/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml index 62dffd6376..ee4da9b7b1 100644 --- a/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml +++ b/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml @@ -73,12 +73,14 @@ spec: port: {{ .Values.service.internalPort2 }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} + timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} {{ end }} readinessProbe: tcpSocket: port: {{ .Values.service.internalPort2 }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} + timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} resources: {{ include "common.resources" . | indent 12 }} env: |