From 7157a78f1b8e6fe28d0a8a16c8c9cc766c5fcd39 Mon Sep 17 00:00:00 2001 From: Matthew Zipkin Date: Tue, 10 Sep 2024 13:36:36 -0400 Subject: [PATCH] bitcoincore: lazier probe checks to accomdate slower nodes / systems (#572) --- resources/charts/bitcoincore/values.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/charts/bitcoincore/values.yaml b/resources/charts/bitcoincore/values.yaml index 2c9962b8a..301b329b3 100644 --- a/resources/charts/bitcoincore/values.yaml +++ b/resources/charts/bitcoincore/values.yaml @@ -78,16 +78,16 @@ livenessProbe: command: - pidof - bitcoind - failureThreshold: 3 + failureThreshold: 12 initialDelaySeconds: 5 periodSeconds: 5 successThreshold: 1 - timeoutSeconds: 1 + timeoutSeconds: 10 readinessProbe: - failureThreshold: 1 - periodSeconds: 1 + failureThreshold: 12 + periodSeconds: 5 successThreshold: 1 - timeoutSeconds: 1 + timeoutSeconds: 10 # Additional volumes on the output Deployment definition.