From 0eee4489fe4f49f481169afbcfbc421965d2c5df Mon Sep 17 00:00:00 2001 From: Ricardo Maraschini Date: Wed, 16 Feb 2022 13:48:51 +0100 Subject: [PATCH] probes: increase timeout (PROJQUAY-3238) Increase the timeout for the http probes. --- kustomize/base/quay.deployment.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kustomize/base/quay.deployment.yaml b/kustomize/base/quay.deployment.yaml index 8f2db7cc5..5f7859654 100644 --- a/kustomize/base/quay.deployment.yaml +++ b/kustomize/base/quay.deployment.yaml @@ -91,11 +91,17 @@ spec: path: /health/instance port: 8080 scheme: HTTP - livelinessProbe: + timeoutSeconds: 10 + periodSeconds: 15 + failureThreshold: 10 + livenessProbe: httpGet: path: /health/instance port: 8080 scheme: HTTP + timeoutSeconds: 10 + periodSeconds: 15 + failureThreshold: 10 volumeMounts: - name: config readOnly: false