From 75c31c8761bb7d5fddd0fa236475b58bf8f805c6 Mon Sep 17 00:00:00 2001 From: Nicolas Berthet Date: Thu, 13 Sep 2018 17:45:07 +0800 Subject: [PATCH] Increase timeout of the liveness & readiness probes --- charts/wallet-service/templates/deployment.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/wallet-service/templates/deployment.yaml b/charts/wallet-service/templates/deployment.yaml index bb2af48..0c470e7 100644 --- a/charts/wallet-service/templates/deployment.yaml +++ b/charts/wallet-service/templates/deployment.yaml @@ -28,18 +28,18 @@ spec: port: http successThreshold: 1 failureThreshold: 60 - initialDelaySeconds: 15 + initialDelaySeconds: 30 periodSeconds: 3 - timeoutSeconds: 15 + timeoutSeconds: 30 livenessProbe: httpGet: path: /nynja/ethereum/api.v.1.0/version port: http successThreshold: 1 failureThreshold: 15 - initialDelaySeconds: 30 + initialDelaySeconds: 60 periodSeconds: 3 - timeoutSeconds: 15 + timeoutSeconds: 30 resources: {{ toYaml .Values.resources | indent 12 }} env: @@ -103,4 +103,4 @@ spec: - name: config configMap: name: {{ template "wallet-service.name" . }} - {{- end }} \ No newline at end of file + {{- end }} -- GitLab