This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-helm-chart.git
The following commit(s) were added to refs/heads/master by this push:
new 63cbdfe Increase default initialDelaySeconds for Zookeeper probes to
workaround ZOOKEEPER-3988 (#202)
63cbdfe is described below
commit 63cbdfe68728c97ee51df2975f6bb3582f22df64
Author: Lari Hotari <[email protected]>
AuthorDate: Tue Jan 18 18:38:29 2022 +0200
Increase default initialDelaySeconds for Zookeeper probes to workaround
ZOOKEEPER-3988 (#202)
- When TLS is enabled for Zookeeper, NettyServerCnxnFactory will be used.
It contains the issue https://github.com/apache/pulsar/issues/11070 /
https://issues.apache.org/jira/browse/ZOOKEEPER-3988
- as a workaround, increase the initialDelaySeconds from 10 to 20 to
reduce the likely hood of ZOOKEEPER-3988
---
charts/pulsar/values.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/charts/pulsar/values.yaml b/charts/pulsar/values.yaml
index 23d4ff4..b162c11 100644
--- a/charts/pulsar/values.yaml
+++ b/charts/pulsar/values.yaml
@@ -318,19 +318,19 @@ zookeeper:
liveness:
enabled: true
failureThreshold: 10
- initialDelaySeconds: 10
+ initialDelaySeconds: 20
periodSeconds: 30
timeoutSeconds: 5
readiness:
enabled: true
failureThreshold: 10
- initialDelaySeconds: 10
+ initialDelaySeconds: 20
periodSeconds: 30
timeoutSeconds: 5
startup:
enabled: false
failureThreshold: 30
- initialDelaySeconds: 10
+ initialDelaySeconds: 20
periodSeconds: 30
timeoutSeconds: 5
affinity: