From 4418bd4bc104fbecf7a5d0d7be159b533d93fd8f Mon Sep 17 00:00:00 2001 From: Matthew Zipkin Date: Tue, 10 Sep 2024 11:00:10 -0400 Subject: [PATCH] bitcoincore: lazier probe checks to accomdate slower nodes / systems --- 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.