From 3a6211841fdf46269886e18802b29e302359382e Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Wed, 9 Oct 2019 12:40:11 -0400 Subject: Increase liveness/readiness probe timeouts. Issue-ID: CCSDK-1822 Signed-off-by: Oleg Mitsura Change-Id: Ib75741d85cfe8d0d5129dac6d11d0a3468627320 --- kubernetes/cds/charts/cds-command-executor/templates/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'kubernetes/cds/charts/cds-command-executor/templates/deployment.yaml') diff --git a/kubernetes/cds/charts/cds-command-executor/templates/deployment.yaml b/kubernetes/cds/charts/cds-command-executor/templates/deployment.yaml index 659eddbaef..1737290090 100755 --- a/kubernetes/cds/charts/cds-command-executor/templates/deployment.yaml +++ b/kubernetes/cds/charts/cds-command-executor/templates/deployment.yaml @@ -57,12 +57,14 @@ spec: port: {{ .Values.service.grpc.internalPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} + timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} {{ end }} readinessProbe: tcpSocket: port: {{ .Values.service.grpc.internalPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} + timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} volumeMounts: - mountPath: /etc/localtime name: localtime -- cgit 1.2.3-korg